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

33 lines
944 B
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 btn_top : GButton
{
public Controller index;
public Controller btn_state;
public GTextField text_type;
public GTextField text_cash;
public GImage img_outline;
public const string URL = "ui://sddomhj3upx71r";
public static btn_top CreateInstance()
{
return (btn_top)UIPackage.CreateObject("SaveingPot", "btn_top");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
index = GetControllerAt(0);
btn_state = GetControllerAt(1);
text_type = (GTextField)GetChildAt(4);
text_cash = (GTextField)GetChildAt(5);
img_outline = (GImage)GetChildAt(6);
}
}
}