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.

32 lines
640 B
C#

2 years ago
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace Game.Battle
{
public partial class ViewWeapon : GComponent
{
public Controller m_c1;
public GList m_WeaponList;
public const string URL = "ui://2qo7xpdcklx93y";
public static ViewWeapon CreateInstance()
{
return (ViewWeapon)UIPackage.CreateObject("Battle","Weapon");
}
public ViewWeapon()
{
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
m_c1 = this.GetController("c1");
m_WeaponList = (GList)this.GetChild("WeaponList");
}
}
}