提交项目

This commit is contained in:
2026-05-28 15:23:36 +08:00
commit 3cfc77d12b
5726 changed files with 554351 additions and 0 deletions
@@ -0,0 +1,19 @@
namespace ZooMatch
{
public class GameMenuCtrl : BaseCtrl
{
public static GameMenuCtrl Instance { get; private set; }
private GameMenuModel model;
protected override void OnInit()
{
Instance = this;
}
protected override void OnDispose()
{
Instance = null;
}
}
}