fix:1、添加跳链接的webview的插件。2、修复bug

This commit is contained in:
2026-07-14 16:12:11 +08:00
parent 110660f299
commit bb84cea894
79 changed files with 4455 additions and 512 deletions
@@ -85,5 +85,6 @@ namespace RedHotRoast
public const string GameAgainCtrl = "GameAgainCtrl";
public const string ArrowSettingCtrl = "ArrowSettingCtrl";
public const string ArrowGameResultCtrl = "ArrowGameResultCtrl";
public const string RedeemCodeCtrl = "RedeemCodeCtrl";
}
}
@@ -83,5 +83,6 @@ namespace RedHotRoast
public const string GameAgainModel = "GameAgainModel";
public const string ArrowSettingModel = "ArrowSettingModel";
public const string ArrowGameResultModel = "ArrowGameResultModel";
public const string RedeemCodeModel = "RedeemCodeModel";
}
}
@@ -77,6 +77,7 @@ namespace RedHotRoast
moduleManager.AddModel(ModelConst.GameAgainModel, new GameAgainModel());
moduleManager.AddModel(ModelConst.ArrowSettingModel, new ArrowSettingModel());
moduleManager.AddModel(ModelConst.ArrowGameResultModel, new ArrowGameResultModel());
moduleManager.AddModel(ModelConst.RedeemCodeModel, new RedeemCodeModel());
}
public static void AutoRegisterUICtrl()
{
@@ -154,6 +155,7 @@ namespace RedHotRoast
moduleManager.AddUICtrl(UICtrlConst.GameAgainUICtrl, new GameAgainUICtrl());
moduleManager.AddUICtrl(UICtrlConst.ArrowSettingUICtrl, new ArrowSettingUICtrl());
moduleManager.AddUICtrl(UICtrlConst.ArrowGameResultUICtrl, new ArrowGameResultUICtrl());
moduleManager.AddUICtrl(UICtrlConst.RedeemCodeUICtrl, new RedeemCodeUICtrl());
}
public static void AutoRegisterCtrl()
@@ -238,6 +240,7 @@ namespace RedHotRoast
moduleManager.AddCtrl(CtrlConst.GameAgainCtrl, new GameAgainCtrl());
moduleManager.AddCtrl(CtrlConst.ArrowSettingCtrl, new ArrowSettingCtrl());
moduleManager.AddCtrl(CtrlConst.ArrowGameResultCtrl, new ArrowGameResultCtrl());
moduleManager.AddCtrl(CtrlConst.RedeemCodeCtrl, new RedeemCodeCtrl());
}
public static void AutoRegisterUIType()
@@ -319,6 +322,7 @@ namespace RedHotRoast
moduleManager.AddUIType(UIConst.GameAgainUI, typeof(GameAgainUI));
moduleManager.AddUIType(UIConst.ArrowSettingUI, typeof(ArrowSettingUI));
moduleManager.AddUIType(UIConst.ArrowGameResultUI, typeof(ArrowGameResultUI));
moduleManager.AddUIType(UIConst.RedeemCodeUI, typeof(RedeemCodeUI));
}
+1
View File
@@ -82,6 +82,7 @@ namespace RedHotRoast
public const string GameAgainUI = "GameAgainUI";
public const string ArrowSettingUI = "ArrowSettingUI";
public const string ArrowGameResultUI = "ArrowGameResultUI";
public const string RedeemCodeUI = "RedeemCodeUI";
}
@@ -83,5 +83,6 @@ namespace RedHotRoast
public const string GameAgainUICtrl = "GameAgainUICtrl";
public const string ArrowSettingUICtrl = "ArrowSettingUICtrl";
public const string ArrowGameResultUICtrl = "ArrowGameResultUICtrl";
public const string RedeemCodeUICtrl = "RedeemCodeUICtrl";
}
}