feat():完成3种模式的基本运行框架

This commit is contained in:
2025-10-18 08:55:38 +08:00
parent fd7dfa408c
commit 80599ed51b
39 changed files with 909 additions and 427 deletions

View File

@@ -0,0 +1,12 @@
using UnityEngine;
using Core;
namespace UI
{
public class StartGameButton : UIBase
{
public void StartGame()
{
ScenesManager.Instance.LoadGameplay("Level1");
}
}
}