Files
RedHotRoast-ios/Assets/GemCrush/FGUI/package/P09_ChooseProp/com_prop.cs
T

33 lines
943 B
C#
Raw Normal View History

2026-04-22 09:52:55 +08:00
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace FGUI.P09_ChooseProp
{
public partial class com_prop : GComponent
{
public Controller prop;
public GTextField title;
public btn_goldBuy btn_buy;
public GButton btn_back;
public GButton btn_watch;
public const string URL = "ui://ig55ss7kq8ucg";
public static com_prop CreateInstance()
{
return (com_prop)UIPackage.CreateObject("P09_ChooseProp", "com_prop");
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
prop = GetControllerAt(0);
title = (GTextField)GetChildAt(5);
btn_buy = (btn_goldBuy)GetChildAt(6);
btn_back = (GButton)GetChildAt(7);
btn_watch = (GButton)GetChildAt(8);
}
}
}