Files
BingoGrassland/Assets/BingoBrain/FGUI/Package/ACommon/btn_balloon.cs
T

29 lines
774 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.ACommon
{
public partial class btn_balloon : GButton
{
public Controller gift;
public GTextField cash_text;
public Transition fx_fly;
public const string URL = "ui://pmf3wbjifczjfq";
public static btn_balloon CreateInstance()
{
return (btn_balloon)UIPackage.CreateObject("ACommon", "btn_balloon");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
gift = GetControllerAt(0);
cash_text = (GTextField)GetChildAt(3);
fx_fly = GetTransitionAt(0);
}
}
}