Files
BingoGrassland/Assets/BingoBrain/FGUI/Package/SaveingPot/com_rank.cs
T

37 lines
1.1 KiB
C#
Raw Normal View History

2026-04-20 13:49:36 +08:00
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace FGUI.SaveingPot
{
public partial class com_rank : GComponent
{
public Controller content1;
public Controller content2;
public Controller content3;
public GTextField text_ranks;
public GTextField text_rank1;
public GTextField text_rank2;
public GTextField text_rank3;
public const string URL = "ui://sddomhj3qgv24f";
public static com_rank CreateInstance()
{
return (com_rank)UIPackage.CreateObject("SaveingPot", "com_rank");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
content1 = GetControllerAt(0);
content2 = GetControllerAt(1);
content3 = GetControllerAt(2);
text_ranks = (GTextField)GetChildAt(3);
text_rank1 = (GTextField)GetChildAt(5);
text_rank2 = (GTextField)GetChildAt(6);
text_rank3 = (GTextField)GetChildAt(7);
}
}
}