EP 实验性框架

This commit is contained in:
2025-11-20 16:17:10 +08:00
parent bf81df9581
commit 18442ae51c
5 changed files with 530 additions and 78 deletions

View File

@@ -5,13 +5,13 @@ namespace Convention.Experimental.Modules
{
public class ConfigManager : PublicType.GameModule
{
public readonly ProjectConfig m_ProjectConfig = new();
public readonly ProjectConfig Config = new();
public bool IsSavePropertiesWhenShutdown = false;
internal override void Shutdown()
{
if (IsSavePropertiesWhenShutdown)
m_ProjectConfig.SaveProperties();
Config.SaveProperties();
}
}
}