This commit is contained in:
2026-06-04 17:10:40 +08:00
parent 8f482df1d5
commit 671ca265ed
30 changed files with 323 additions and 58 deletions
@@ -0,0 +1,25 @@
using BingoBrain.Core;
namespace BingoBrain
{
public class LoginACtrl : BaseCtrl
{
public static LoginACtrl Instance { get; private set; }
private LoginAModel model;
#region
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.LoginAModel) as LoginAModel;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
}
}