using System; using Core; using UnityEngine; namespace Script.Gameplay.Global { public enum GameState { Boot, // 初始化 MainMenu, // 主菜单 Playing, // 游戏中 Paused, // 暂停 GameOver, // 游戏结束 Victory // 胜利 } public class GameFlowManager : MonoSingleton { private void Start() { GameCountdownManager.Instance.StartLevelTimer(); } } }