| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 | /** This is an automatically generated class by FairyGUI. Please do not modify it. **/using FairyGUI;namespace UI.MiniGame{    public partial class UI_MergeGameRouteTips    {        public GComponent target;        public GGraph m_btnBack;        public GLoader m_bg;        public GLoader m_AFuHead;        public GList m_AFuList;        public GLoader m_DouBaoHead;        public GList m_DouBaoList;        public GTextField m_name;        public GTextField m_desc;        public const string URL = "ui://wgkh30qjqbf42z";        public const string PACKAGE_NAME = "MiniGame";        public const string RES_NAME = "MergeGameRouteTips";        private static UI_MergeGameRouteTips _proxy;        public static UI_MergeGameRouteTips Create(GObject gObject = null)        {            var ui = new UI_MergeGameRouteTips();            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_MergeGameRouteTips Proxy(GObject gObject = null)        {            if(_proxy == null)            {                _proxy = new UI_MergeGameRouteTips();            }            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_btnBack = (GGraph)comp.GetChild("btnBack");            m_bg = (GLoader)comp.GetChild("bg");            m_AFuHead = (GLoader)comp.GetChild("AFuHead");            m_AFuList = (GList)comp.GetChild("AFuList");            m_DouBaoHead = (GLoader)comp.GetChild("DouBaoHead");            m_DouBaoList = (GList)comp.GetChild("DouBaoList");            m_name = (GTextField)comp.GetChild("name");            m_desc = (GTextField)comp.GetChild("desc");        }        public void Dispose(bool disposeTarget = false)        {            m_btnBack = null;            m_bg = null;            m_AFuHead = null;            m_AFuList = null;            m_DouBaoHead = null;            m_DouBaoList = null;            m_name = null;            m_desc = null;            if(disposeTarget && target != null)            {                target.RemoveFromParent();                target.Dispose();            }            target = null;        }    }}
 |