This commit is contained in:
ChiKyun Kim
2025-09-09 08:25:50 +09:00
parent 9a7d1d27c7
commit adb66451ca
79 changed files with 4195 additions and 2213 deletions

View File

@@ -5,6 +5,8 @@ namespace AR
{
public static class SETTING
{
public static SystemSetting System;
public static CounterSetting Counter;
public static CommonSetting Data;
public static UserSetting User;
public static Boolean isInit { get; private set; } = false;
@@ -14,15 +16,18 @@ namespace AR
Data.Load();
if (User == null) User = new UserSetting();
User.Load();
if (System == null) System = new SystemSetting();
System.Load();
if (Counter == null) Counter = new CounterSetting();
Counter.Load();
isInit = true;
}
public static void Save()
{
Data.Save();
User.Save();
System.Save();
Counter.Save();
}