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.

44 lines
1.1 KiB
C#

2 years ago
/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
using FairyGUI;
using FairyGUI.Utils;
namespace Game.Common
{
public partial class ViewSkillButton : GButton
{
public Controller m_button;
public Controller m_c1;
public GGraph m_n7;
public GGraph m_n3;
public GGraph m_n4;
public GLoader m_SkillIcon;
public GTextField m_SkillNameText;
public GTextField m_SkillIDText;
public const string URL = "ui://ovtc57tdhomch";
public static ViewSkillButton CreateInstance()
{
return (ViewSkillButton)UIPackage.CreateObject("Common","SkillButton");
}
public ViewSkillButton()
{
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
m_button = this.GetController("button");
m_c1 = this.GetController("c1");
m_n7 = (GGraph)this.GetChild("n7");
m_n3 = (GGraph)this.GetChild("n3");
m_n4 = (GGraph)this.GetChild("n4");
m_SkillIcon = (GLoader)this.GetChild("SkillIcon");
m_SkillNameText = (GTextField)this.GetChild("SkillNameText");
m_SkillIDText = (GTextField)this.GetChild("SkillIDText");
}
}
}