fix:1、添加arrow的游戏代码,和相关的周边功能

This commit is contained in:
2026-07-10 17:57:02 +08:00
parent dd56ccb469
commit f1e05d9547
145 changed files with 8492 additions and 1059 deletions
@@ -8,8 +8,8 @@ namespace FGUI.GameResult_08
public partial class com_arrow_end_again : GComponent
{
public GTextField title;
public GComponent btn_back;
public GComponent btn_revive;
public GButton btn_back;
public GButton btn_revive;
public GButton btn_restart;
public const string URL = "ui://8sjqw0q3rsd42h";
@@ -23,8 +23,8 @@ namespace FGUI.GameResult_08
base.ConstructFromXML(xml);
title = (GTextField)GetChildAt(2);
btn_back = (GComponent)GetChildAt(3);
btn_revive = (GComponent)GetChildAt(5);
btn_back = (GButton)GetChildAt(3);
btn_revive = (GButton)GetChildAt(5);
btn_restart = (GButton)GetChildAt(6);
}
}