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.

42 lines
1.1 KiB
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 ViewHud : GComponent
{
public Controller m_showInteract;
public Controller m_showMonsterInfo;
public Controller m_showLevelName;
public Viewc_Player m_UI_Player;
public Viewc_Interact m_n13;
public Viewc_Monster m_UI_Monster;
public Viewc_LevelName m_UI_LevelName;
public const string URL = "ui://2qo7xpdcoi571o";
public static ViewHud CreateInstance()
{
return (ViewHud)UIPackage.CreateObject("Battle","Hud");
}
public ViewHud()
{
}
public override void ConstructFromXML(XML xml)
{
base.ConstructFromXML(xml);
m_showInteract = this.GetController("showInteract");
m_showMonsterInfo = this.GetController("showMonsterInfo");
m_showLevelName = this.GetController("showLevelName");
m_UI_Player = (Viewc_Player)this.GetChild("UI_Player");
m_n13 = (Viewc_Interact)this.GetChild("n13");
m_UI_Monster = (Viewc_Monster)this.GetChild("UI_Monster");
m_UI_LevelName = (Viewc_LevelName)this.GetChild("UI_LevelName");
}
}
}