fix:1、修复bug
This commit is contained in:
@@ -84,5 +84,6 @@ namespace RedHotRoast
|
||||
public const string SaveingPotCtrl = "SaveingPotCtrl";
|
||||
public const string GameAgainCtrl = "GameAgainCtrl";
|
||||
public const string ArrowSettingCtrl = "ArrowSettingCtrl";
|
||||
public const string ArrowGameResultCtrl = "ArrowGameResultCtrl";
|
||||
}
|
||||
}
|
||||
@@ -82,5 +82,6 @@ namespace RedHotRoast
|
||||
public const string SaveingPotModel = "SaveingPotModel";
|
||||
public const string GameAgainModel = "GameAgainModel";
|
||||
public const string ArrowSettingModel = "ArrowSettingModel";
|
||||
public const string ArrowGameResultModel = "ArrowGameResultModel";
|
||||
}
|
||||
}
|
||||
@@ -76,6 +76,7 @@ namespace RedHotRoast
|
||||
moduleManager.AddModel(ModelConst.MakeupConfirmModel, new MakeupConfirmModel());
|
||||
moduleManager.AddModel(ModelConst.GameAgainModel, new GameAgainModel());
|
||||
moduleManager.AddModel(ModelConst.ArrowSettingModel, new ArrowSettingModel());
|
||||
moduleManager.AddModel(ModelConst.ArrowGameResultModel, new ArrowGameResultModel());
|
||||
}
|
||||
public static void AutoRegisterUICtrl()
|
||||
{
|
||||
@@ -152,6 +153,7 @@ namespace RedHotRoast
|
||||
moduleManager.AddUICtrl(UICtrlConst.MakeupConfirmUICtrl, new MakeupConfirmUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.GameAgainUICtrl, new GameAgainUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.ArrowSettingUICtrl, new ArrowSettingUICtrl());
|
||||
moduleManager.AddUICtrl(UICtrlConst.ArrowGameResultUICtrl, new ArrowGameResultUICtrl());
|
||||
}
|
||||
|
||||
public static void AutoRegisterCtrl()
|
||||
@@ -235,6 +237,7 @@ namespace RedHotRoast
|
||||
moduleManager.AddCtrl(CtrlConst.MakeupConfirmCtrl, new MakeupConfirmCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.GameAgainCtrl, new GameAgainCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.ArrowSettingCtrl, new ArrowSettingCtrl());
|
||||
moduleManager.AddCtrl(CtrlConst.ArrowGameResultCtrl, new ArrowGameResultCtrl());
|
||||
}
|
||||
|
||||
public static void AutoRegisterUIType()
|
||||
@@ -315,6 +318,8 @@ namespace RedHotRoast
|
||||
moduleManager.AddUIType(UIConst.MakeupConfirmUI, typeof(MakeupConfirmUI));
|
||||
moduleManager.AddUIType(UIConst.GameAgainUI, typeof(GameAgainUI));
|
||||
moduleManager.AddUIType(UIConst.ArrowSettingUI, typeof(ArrowSettingUI));
|
||||
moduleManager.AddUIType(UIConst.ArrowGameResultUI, typeof(ArrowGameResultUI));
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -81,6 +81,7 @@ namespace RedHotRoast
|
||||
public const string SaveingPotUI = "SaveingPotUI";
|
||||
public const string GameAgainUI = "GameAgainUI";
|
||||
public const string ArrowSettingUI = "ArrowSettingUI";
|
||||
public const string ArrowGameResultUI = "ArrowGameResultUI";
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -82,5 +82,6 @@ namespace RedHotRoast
|
||||
public const string SaveingPotUICtrl = "SaveingPotUICtrl";
|
||||
public const string GameAgainUICtrl = "GameAgainUICtrl";
|
||||
public const string ArrowSettingUICtrl = "ArrowSettingUICtrl";
|
||||
public const string ArrowGameResultUICtrl = "ArrowGameResultUICtrl";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user