mirror of
https://github.com/crskycode/GARbro.git
synced 2026-06-26 21:57:48 +08:00
fixed code to work with new resource settings interface.
This commit is contained in:
15
ArcFormats/ResourceSettings.cs
Normal file
15
ArcFormats/ResourceSettings.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
//! \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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user