Update SettingsUtils.cs

This commit is contained in:
ALEXTANG
2023-05-12 00:34:41 +08:00
parent 29985b819e
commit 43c49aabbb

View File

@@ -201,4 +201,14 @@ public static class SettingsUtils
// GameEntry.GetModule<LocalizationComponent>().Language.ToString(), assetName, fromBytes ? "bytes" : "xml"); // GameEntry.GetModule<LocalizationComponent>().Language.ToString(), assetName, fromBytes ? "bytes" : "xml");
return string.Empty; return string.Empty;
} }
public static List<ScriptGenerateRuler> GetScriptGenerateRule()
{
return FrameworkGlobalSettings.ScriptGenerateRule;
}
public static string GetUINameSpace()
{
return FrameworkGlobalSettings.NameSpace;
}
} }