33 lines
943 B
C#
33 lines
943 B
C#
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
|
|
|
using FairyGUI;
|
|
using FairyGUI.Utils;
|
|
|
|
namespace FGUI.Common_01
|
|
{
|
|
public partial class com_money : GComponent
|
|
{
|
|
public GImage icon;
|
|
public GButton btn_ch;
|
|
public GTextField text_gold;
|
|
public GTextField text_time;
|
|
public GGroup group_tips;
|
|
public const string URL = "ui://o9974uc5733f48";
|
|
|
|
public static com_money CreateInstance()
|
|
{
|
|
return (com_money)UIPackage.CreateObject("Common_01", "com_money");
|
|
}
|
|
|
|
public override void ConstructFromXML(XML xml)
|
|
{
|
|
base.ConstructFromXML(xml);
|
|
|
|
icon = (GImage)GetChildAt(1);
|
|
btn_ch = (GButton)GetChildAt(2);
|
|
text_gold = (GTextField)GetChildAt(3);
|
|
text_time = (GTextField)GetChildAt(5);
|
|
group_tips = (GGroup)GetChildAt(6);
|
|
}
|
|
}
|
|
} |