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
658 B
C#
32 lines
658 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 ViewMapPanel : GComponent
|
|
{
|
|
public GGraph m_mask;
|
|
public ViewMapList m_mapList;
|
|
|
|
public const string URL = "ui://2qo7xpdcklx94a";
|
|
|
|
public static ViewMapPanel CreateInstance()
|
|
{
|
|
return (ViewMapPanel)UIPackage.CreateObject("Battle","MapPanel");
|
|
}
|
|
|
|
public ViewMapPanel()
|
|
{
|
|
}
|
|
|
|
public override void ConstructFromXML(XML xml)
|
|
{
|
|
base.ConstructFromXML(xml);
|
|
|
|
m_mask = (GGraph)this.GetChild("mask");
|
|
m_mapList = (ViewMapList)this.GetChild("mapList");
|
|
}
|
|
}
|
|
} |