2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
800 B
C#

/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace Game.Battle
{
public partial class ViewWeaponItem : GComponent
{
public Controller m_c1;
public Controller m_c2;
public ViewWeaponIcon m_item;
public GTextField m_index;
public const string URL = "ui://2qo7xpdcklx940";
public static ViewWeaponItem CreateInstance()
{
return (ViewWeaponItem)UIPackage.CreateObject("Battle","WeaponItem");
}
public ViewWeaponItem()
{
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
m_c1 = this.GetController("c1");
m_c2 = this.GetController("c2");
m_item = (ViewWeaponIcon)this.GetChild("item");
m_index = (GTextField)this.GetChild("index");
}
}
}