This commit is contained in:
2026-07-14 14:48:39 +08:00
parent 27b82c051c
commit e356348b3d
49 changed files with 352 additions and 467 deletions
@@ -50,7 +50,8 @@ namespace ScrewsMaster
moduleManager.AddModel(ModelConst.RecordViewModel, new RecordViewModel());
moduleManager.AddModel(ModelConst.ThreeDaysGiftModel, new ThreeDaysGiftModel());
moduleManager.AddModel(ModelConst.RewardMulNewModel, new RewardMulNewModel());
}
moduleManager.AddModel(ModelConst.LoginAModel, new LoginAModel());
}
public static void AutoRegisterUICtrl()
{
ModuleManager moduleManager = ModuleManager.Instance;
@@ -98,7 +99,8 @@ namespace ScrewsMaster
moduleManager.AddUICtrl(UICtrlConst.RecordViewUICtrl, new RecordViewUICtrl());
moduleManager.AddUIType(UIConst.ThreeDaysGiftUI, typeof(ThreeDaysGiftUI));
moduleManager.AddUIType(UIConst.RewardMulNewUI, typeof(RewardMulNewUI));
}
moduleManager.AddUIType(UIConst.LoginAUI, typeof(LoginAUI));
}
public static void AutoRegisterCtrl()
{
@@ -146,7 +148,8 @@ namespace ScrewsMaster
moduleManager.AddCtrl(CtrlConst.RecordViewCtrl, new RecordViewCtrl());
moduleManager.AddCtrl(CtrlConst.ThreeDaysGiftCtrl, new ThreeDaysGiftCtrl());
moduleManager.AddCtrl(CtrlConst.RewardMulNewCtrl, new RewardMulNewCtrl());
}
moduleManager.AddCtrl(CtrlConst.LoginACtrl, new LoginACtrl());
}
public static void AutoRegisterUIType()
{
@@ -193,6 +196,7 @@ namespace ScrewsMaster
moduleManager.AddUIType(UIConst.RecordViewUI, typeof(RecordViewUI));
moduleManager.AddUICtrl(UICtrlConst.ThreeDaysGiftUICtrl, new ThreeDaysGiftUICtrl());
moduleManager.AddUICtrl(UICtrlConst.RewardMulNewUICtrl, new RewardMulNewUICtrl());
}
moduleManager.AddUICtrl(UICtrlConst.LoginAUICtrl, new LoginAUICtrl());
}
}
}