UI框架开发中
This commit is contained in:
18
Assets/Scripts/HotUpdate/Main/GameSystem.cs
Normal file
18
Assets/Scripts/HotUpdate/Main/GameSystem.cs
Normal 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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user