setting project : korean -> english

This commit is contained in:
ChiKyun Kim
2025-09-24 10:54:52 +09:00
parent 8111db4910
commit ee122a6daf
6 changed files with 63 additions and 63 deletions

View File

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