35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
/** 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_choose : GComponent
|
|
{
|
|
public Controller state;
|
|
public GButton btn_close;
|
|
public GTextField title;
|
|
public btn_goldBuy btn_gold_buy;
|
|
public GButton btn_thanks;
|
|
public GButton btn_ad;
|
|
public const string URL = "ui://ig55ss7kq8uc0";
|
|
|
|
public static com_choose CreateInstance()
|
|
{
|
|
return (com_choose)UIPackage.CreateObject("P09_ChooseProp", "com_choose");
|
|
}
|
|
|
|
public override void ConstructFromXML(XML xml)
|
|
{
|
|
base.ConstructFromXML(xml);
|
|
|
|
state = GetControllerAt(0);
|
|
btn_close = (GButton)GetChildAt(1);
|
|
title = (GTextField)GetChildAt(3);
|
|
btn_gold_buy = (btn_goldBuy)GetChildAt(4);
|
|
btn_thanks = (GButton)GetChildAt(5);
|
|
btn_ad = (GButton)GetChildAt(6);
|
|
}
|
|
}
|
|
} |