fix:1、删除sdk相关。2、添加tips界面,修复bug

This commit is contained in:
2026-06-17 14:45:28 +08:00
parent 19efcb09fa
commit acf888d9be
1099 changed files with 127081 additions and 74087 deletions
@@ -58,6 +58,7 @@ namespace ChillConnect
public const string ArrowGameCtrl = "ArrowGameCtrl";
public const string GameAgainCtrl = "GameAgainCtrl";
public const string ArrowThemeCtrl = "ArrowThemeCtrl";
public const string ArrowTipsCtrl = "ArrowTipsCtrl";
}
}
@@ -58,6 +58,7 @@ namespace ChillConnect
public const string ArrowGameModel = "ArrowGameModel";
public const string GameAgainModel = "GameAgainModel";
public const string ArrowThemeModel = "ArrowThemeModel";
public const string ArrowTipsModel = "ArrowTipsModel";
}
}
@@ -61,6 +61,7 @@ namespace ChillConnect
moduleManager.AddModel(ModelConst.ArrowGameModel, new ArrowGameModel());
moduleManager.AddModel(ModelConst.GameAgainModel, new GameAgainModel());
moduleManager.AddModel(ModelConst.ArrowThemeModel, new ArrowThemeModel());
moduleManager.AddModel(ModelConst.ArrowTipsModel, new ArrowTipsModel());
}
@@ -120,6 +121,7 @@ namespace ChillConnect
moduleManager.AddUICtrl(UICtrlConst.ArrowGameUICtrl, new ArrowGameUICtrl());
moduleManager.AddUICtrl(UICtrlConst.GameAgainUICtrl, new GameAgainUICtrl());
moduleManager.AddUICtrl(UICtrlConst.ArrowThemeUICtrl, new ArrowThemeUICtrl());
moduleManager.AddUICtrl(UICtrlConst.ArrowTipsUICtrl, new ArrowTipsUICtrl());
@@ -182,6 +184,7 @@ namespace ChillConnect
moduleManager.AddCtrl(CtrlConst.ArrowGameCtrl, new ArrowGameCtrl());
moduleManager.AddCtrl(CtrlConst.GameAgainCtrl, new GameAgainCtrl());
moduleManager.AddCtrl(CtrlConst.ArrowThemeCtrl, new ArrowThemeCtrl());
moduleManager.AddCtrl(CtrlConst.ArrowTipsCtrl, new ArrowTipsCtrl());
}
@@ -242,6 +245,7 @@ namespace ChillConnect
moduleManager.AddUIType(UIConst.ArrowGameUI, typeof(ArrowGameUI));
moduleManager.AddUIType(UIConst.GameAgainUI, typeof(GameAgainUI));
moduleManager.AddUIType(UIConst.ArrowThemeUI, typeof(ArrowThemeUI));
moduleManager.AddUIType(UIConst.ArrowTipsUI, typeof(ArrowTipsUI));
}
}
+1
View File
@@ -57,6 +57,7 @@ namespace ChillConnect
public const string ArrowGameUI = "ArrowGameUI";
public const string GameAgainUI = "GameAgainUI";
public const string ArrowThemeUI = "ArrowThemeUI";
public const string ArrowTipsUI = "ArrowTipsUI";
}
}
@@ -58,6 +58,7 @@ namespace ChillConnect
public const string ArrowGameUICtrl = "ArrowGameUICtrl";
public const string GameAgainUICtrl = "GameAgainUICtrl";
public const string ArrowThemeUICtrl = "ArrowThemeUICtrl";
public const string ArrowTipsUICtrl = "ArrowTipsUICtrl";
}
}