/** This is an automatically generated class by FairyGUI. Please do not modify it. **/ using FairyGUI; namespace UI.MiniGame { public partial class UI_FlipGameStartUI { public GComponent target; public Controller m_c1; public GLoader m_btnBack; public GLoader m_nameIcon; public GList m_settingTypeList; public GLoader m_shop; public GLoader m_showGame; public GLoader m_gameStart; public GLoader m_ticketIcon; public GList m_passRewardList; public GList m_failRewardList; public GList m_descList; public GLoader m_ticket; public GLoader m_addIcon; public GTextField m_ticketNum; public const string URL = "ui://wgkh30qj806nf"; public const string PACKAGE_NAME = "MiniGame"; public const string RES_NAME = "FlipGameStartUI"; private static UI_FlipGameStartUI _proxy; public static UI_FlipGameStartUI Create(GObject gObject = null) { var ui = new UI_FlipGameStartUI(); if(gObject == null) ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME); else ui.target = (GComponent)gObject; ui.Init(ui.target); return ui; } public static UI_FlipGameStartUI Proxy(GObject gObject = null) { if(_proxy == null) { _proxy = new UI_FlipGameStartUI(); } var ui = _proxy; if(gObject == null) ui.target = (GComponent)UIPackage.CreateObject(PACKAGE_NAME, RES_NAME); else ui.target = (GComponent)gObject; ui.Init(ui.target); return ui; } public static void ProxyEnd() { if (_proxy != null) { _proxy.Dispose(); } } public static void ClearProxy() { ProxyEnd(); _proxy = null; } private void Init(GComponent comp) { m_c1 = comp.GetController("c1"); m_btnBack = (GLoader)comp.GetChild("btnBack"); m_nameIcon = (GLoader)comp.GetChild("nameIcon"); m_settingTypeList = (GList)comp.GetChild("settingTypeList"); m_shop = (GLoader)comp.GetChild("shop"); m_showGame = (GLoader)comp.GetChild("showGame"); m_gameStart = (GLoader)comp.GetChild("gameStart"); m_ticketIcon = (GLoader)comp.GetChild("ticketIcon"); m_passRewardList = (GList)comp.GetChild("passRewardList"); m_failRewardList = (GList)comp.GetChild("failRewardList"); m_descList = (GList)comp.GetChild("descList"); m_ticket = (GLoader)comp.GetChild("ticket"); m_addIcon = (GLoader)comp.GetChild("addIcon"); m_ticketNum = (GTextField)comp.GetChild("ticketNum"); } public void Dispose(bool disposeTarget = false) { m_c1 = null; m_btnBack = null; m_nameIcon = null; m_settingTypeList = null; m_shop = null; m_showGame = null; m_gameStart = null; m_ticketIcon = null; m_passRewardList = null; m_failRewardList = null; m_descList = null; m_ticket = null; m_addIcon = null; m_ticketNum = null; if(disposeTarget && target != null) { target.RemoveFromParent(); target.Dispose(); } target = null; } } }