This commit is contained in:
2026-06-04 13:57:53 +08:00
parent 1e442c6bb3
commit 3fe5251b55
76 changed files with 612 additions and 824 deletions
+25
View File
@@ -0,0 +1,25 @@
using BingoBrain.Core;
namespace BingoBrain
{
public class PalCtrl : BaseCtrl
{
public static PalCtrl Instance { get; private set; }
private PalModel model;
#region
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.PalModel) as PalModel;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
}
}