mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 15:44:00 +08:00
16 lines
407 B
C#
16 lines
407 B
C#
//! \file ResourceSettings.cs
|
|
//! \date 2018 Jan 08
|
|
//! \brief Persistent resource settings implementation.
|
|
//
|
|
|
|
namespace GameRes.Formats
|
|
{
|
|
internal class LocalResourceSetting : ResourceSettingBase
|
|
{
|
|
public override object Value {
|
|
get { return Properties.Settings.Default[Name]; }
|
|
set { Properties.Settings.Default[Name] = value; }
|
|
}
|
|
}
|
|
}
|