fix:1、添加arrow的游戏代码,和相关的周边功能
This commit is contained in:
@@ -34,7 +34,6 @@ namespace RedHotRoast
|
||||
moduleManager.AddModel(ModelConst.PassunlockModel, new PassunlockModel());
|
||||
moduleManager.AddModel(ModelConst.BuygoldModel, new BuygoldModel());
|
||||
moduleManager.AddModel(ModelConst.AdcomingModel, new AdcomingModel());
|
||||
moduleManager.AddModel(ModelConst.MainTabModel, new MainTabModel());
|
||||
moduleManager.AddModel(ModelConst.MailViewModel, new MailViewModel());
|
||||
moduleManager.AddModel(ModelConst.PersonViewModel, new PersonViewModel());
|
||||
moduleManager.AddModel(ModelConst.GuideViewModel, new GuideViewModel());
|
||||
@@ -68,6 +67,15 @@ namespace RedHotRoast
|
||||
moduleManager.AddModel(ModelConst.BroadcastModel, new BroadcastModel());
|
||||
moduleManager.AddModel(ModelConst.EggViewModel, new EggViewModel());
|
||||
moduleManager.AddModel(ModelConst.H5Model, new H5Model());
|
||||
moduleManager.AddModel(ModelConst.ArrowGameModel, new ArrowGameModel());
|
||||
moduleManager.AddModel(ModelConst.ArrowThemeModel, new ArrowThemeModel());
|
||||
moduleManager.AddModel(ModelConst.ArrowTipsModel, new ArrowTipsModel());
|
||||
moduleManager.AddModel(ModelConst.StatementViewModel, new StatementViewModel());
|
||||
moduleManager.AddModel(ModelConst.PettyAwardModel, new PettyAwardModel());
|
||||
moduleManager.AddModel(ModelConst.SaveingPotModel, new SaveingPotModel());
|
||||
moduleManager.AddModel(ModelConst.MakeupConfirmModel, new MakeupConfirmModel());
|
||||
moduleManager.AddModel(ModelConst.GameAgainModel, new GameAgainModel());
|
||||
moduleManager.AddModel(ModelConst.ArrowSettingModel, new ArrowSettingModel());
|
||||
}
|
||||
public static void AutoRegisterUICtrl()
|
||||
{
|
||||
@@ -101,7 +109,6 @@ namespace RedHotRoast
|
||||
moduleManager.AddUICtrl(UICtrlConst.PassViewUICtrl, new PassViewUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.PassunlockUICtrl, new PassunlockUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.BuygoldUICtrl, new BuygoldUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.MainTabUICtrl, new MainTabUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.MailViewUICtrl, new MailViewUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.PersonViewUICtrl, new PersonViewUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.GuideViewUICtrl, new GuideViewUICtrl());
|
||||
@@ -136,6 +143,15 @@ namespace RedHotRoast
|
||||
moduleManager.AddUICtrl(UICtrlConst.BroadcastUICtrl, new BroadcastUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.EggViewUICtrl, new EggViewUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.H5UICtrl, new H5UICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.ArrowGameUICtrl, new ArrowGameUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.ArrowThemeUICtrl, new ArrowThemeUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.ArrowTipsUICtrl, new ArrowTipsUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.StatementViewUICtrl, new StatementViewUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.PettyAwardUICtrl, new PettyAwardUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.SaveingPotUICtrl, new SaveingPotUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.MakeupConfirmUICtrl, new MakeupConfirmUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.GameAgainUICtrl, new GameAgainUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.ArrowSettingUICtrl, new ArrowSettingUICtrl());
|
||||
}
|
||||
|
||||
public static void AutoRegisterCtrl()
|
||||
@@ -171,7 +187,6 @@ namespace RedHotRoast
|
||||
moduleManager.AddCtrl(CtrlConst.PassViewCtrl, new PassViewCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.PassunlockCtrl, new PassunlockCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.BuygoldCtrl, new BuygoldCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.MainTabCtrl, new MainTabCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.MailViewCtrl, new MailViewCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.PersonViewCtrl, new PersonViewCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.GuideViewCtrl, new GuideViewCtrl());
|
||||
@@ -211,6 +226,15 @@ namespace RedHotRoast
|
||||
moduleManager.AddCtrl(CtrlConst.BroadcastCtrl, new BroadcastCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.EggViewCtrl, new EggViewCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.H5Ctrl, new H5Ctrl());
|
||||
moduleManager.AddCtrl(CtrlConst.ArrowGameCtrl, new ArrowGameCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.ArrowThemeCtrl, new ArrowThemeCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.ArrowTipsCtrl, new ArrowTipsCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.StatementViewCtrl, new StatementViewCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.PettyAwardCtrl, new PettyAwardCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.SaveingPotCtrl, new SaveingPotCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.MakeupConfirmCtrl, new MakeupConfirmCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.GameAgainCtrl, new GameAgainCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.ArrowSettingCtrl, new ArrowSettingCtrl());
|
||||
}
|
||||
|
||||
public static void AutoRegisterUIType()
|
||||
@@ -246,7 +270,6 @@ namespace RedHotRoast
|
||||
moduleManager.AddUIType(UIConst.PassViewUI, typeof(PassViewUI));
|
||||
moduleManager.AddUIType(UIConst.PassunlockUI, typeof(PassunlockUI));
|
||||
moduleManager.AddUIType(UIConst.BuygoldUI, typeof(BuygoldUI));
|
||||
moduleManager.AddUIType(UIConst.MainTabUI, typeof(MainTabUI));
|
||||
moduleManager.AddUIType(UIConst.MailViewUI, typeof(MailViewUI));
|
||||
moduleManager.AddUIType(UIConst.PersonViewUI, typeof(PersonViewUI));
|
||||
moduleManager.AddUIType(UIConst.GuideViewUI, typeof(GuideViewUI));
|
||||
@@ -283,6 +306,16 @@ namespace RedHotRoast
|
||||
moduleManager.AddUIType(UIConst.BroadcastUI, typeof(BroadcastUI));
|
||||
moduleManager.AddUIType(UIConst.EggViewUI, typeof(EggViewUI));
|
||||
moduleManager.AddUIType(UIConst.H5UI, typeof(H5UI));
|
||||
moduleManager.AddUIType(UIConst.ArrowGameUI, typeof(ArrowGameUI));
|
||||
moduleManager.AddUIType(UIConst.ArrowThemeUI, typeof(ArrowThemeUI));
|
||||
moduleManager.AddUIType(UIConst.ArrowTipsUI, typeof(ArrowTipsUI));
|
||||
moduleManager.AddUIType(UIConst.StatementViewUI, typeof(StatementViewUI));
|
||||
moduleManager.AddUIType(UIConst.PettyAwardUI, typeof(PettyAwardUI));
|
||||
moduleManager.AddUIType(UIConst.SaveingPotUI, typeof(SaveingPotUI));
|
||||
moduleManager.AddUIType(UIConst.MakeupConfirmUI, typeof(MakeupConfirmUI));
|
||||
moduleManager.AddUIType(UIConst.GameAgainUI, typeof(GameAgainUI));
|
||||
moduleManager.AddUIType(UIConst.ArrowSettingUI, typeof(ArrowSettingUI));
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user