UI框架开发中

This commit is contained in:
2025-09-29 11:03:26 +08:00
parent 71edbb6088
commit 3ea4257e2d
24 changed files with 292 additions and 266 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameSystem : Singleton<GameSystem>
{
public UIManager UI { get; private set; }
public SettingsManager Settings { get; private set; }
public GraphicsManager Graphics { get; private set; }
public void Init()
{
UI = UIManager.Inst;
Settings = SettingsManager.Inst;
Graphics = GraphicsManager.Inst;
}
}