33 lines
969 B
C#
33 lines
969 B
C#
/**本脚本为自动生成,每次生成会覆盖!请勿手动修改,生成插件文档及项目地址:https://git.whoot.com/whoot-games/whoot.fguieditorplugin**/
|
||
|
||
|
||
using FairyGUI;
|
||
using FairyGUI.Utils;
|
||
using NBC;
|
||
|
||
namespace NBF
|
||
{
|
||
public partial class FishingTeam
|
||
{
|
||
public const string URL = "ui://682kb9n0o9ci1u";
|
||
|
||
public CommonInput TeamInput;
|
||
public GButton BtnCreate;
|
||
public GButton BtnJoin;
|
||
public GButton BtnExit;
|
||
public GList List;
|
||
|
||
public override void ConstructFromXML(XML xml)
|
||
{
|
||
base.ConstructFromXML(xml);
|
||
|
||
TeamInput = (CommonInput)GetChild("TeamInput");
|
||
BtnCreate = (GButton)GetChild("BtnCreate");
|
||
BtnJoin = (GButton)GetChild("BtnJoin");
|
||
BtnExit = (GButton)GetChild("BtnExit");
|
||
List = (GList)GetChild("List");
|
||
OnInited();
|
||
UILanguage.TrySetComponentLanguage(this);
|
||
}
|
||
}
|
||
} |