新增实验框架

This commit is contained in:
2025-11-14 17:13:10 +08:00
parent 1a28eb62a8
commit 6d72129bae
4 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
namespace Convention.Experimental.Modules
{
public class ConfigManager : PublicType.GameModule
{
public readonly ProjectConfig m_ProjectConfig = new();
public bool IsSavePropertiesWhenShutdown = false;
internal override void Shutdown()
{
if (IsSavePropertiesWhenShutdown)
m_ProjectConfig.SaveProperties();
}
}
}