31 lines
871 B
C#
31 lines
871 B
C#
|
|
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
|
||
|
|
|
||
|
|
using FairyGUI;
|
||
|
|
using FairyGUI.Utils;
|
||
|
|
|
||
|
|
namespace FGUI.JCoin
|
||
|
|
{
|
||
|
|
public partial class Com_CoinWnd : GComponent
|
||
|
|
{
|
||
|
|
public GGraph fx_enter;
|
||
|
|
public GComponent com_Coins;
|
||
|
|
public GTextField text_Add;
|
||
|
|
public Transition fx_addSum;
|
||
|
|
public const string URL = "ui://3z2akmm3kov20";
|
||
|
|
|
||
|
|
public static Com_CoinWnd CreateInstance()
|
||
|
|
{
|
||
|
|
return (Com_CoinWnd)UIPackage.CreateObject("JCoin", "Com_CoinWnd");
|
||
|
|
}
|
||
|
|
|
||
|
|
public override void ConstructFromXML(XML xml)
|
||
|
|
{
|
||
|
|
base.ConstructFromXML(xml);
|
||
|
|
|
||
|
|
fx_enter = (GGraph)GetChildAt(0);
|
||
|
|
com_Coins = (GComponent)GetChildAt(1);
|
||
|
|
text_Add = (GTextField)GetChildAt(2);
|
||
|
|
fx_addSum = GetTransitionAt(0);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|