/** This is an automatically generated class by FairyGUI. Please do not modify it. **/ using FairyGUI; namespace UI.MiniGame { public partial class UI_TZFEGameView { public GComponent target; public GLoader m_bg; public GList m_numList; public GLoader m_backBtn; public GTextField m_score; public GLoader m_target; public GTextField m_time; public GTextField m_timeNum; public GLoader m_mergeBtn; public const string URL = "ui://wgkh30qjjmg19"; public const string PACKAGE_NAME = "MiniGame"; public const string RES_NAME = "TZFEGameView"; private static UI_TZFEGameView _proxy; public static UI_TZFEGameView Create(GObject gObject = null) { var ui = new UI_TZFEGameView(); 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_TZFEGameView Proxy(GObject gObject = null) { if(_proxy == null) { _proxy = new UI_TZFEGameView(); } 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_bg = (GLoader)comp.GetChild("bg"); m_numList = (GList)comp.GetChild("numList"); m_backBtn = (GLoader)comp.GetChild("backBtn"); m_score = (GTextField)comp.GetChild("score"); m_target = (GLoader)comp.GetChild("target"); m_time = (GTextField)comp.GetChild("time"); m_timeNum = (GTextField)comp.GetChild("timeNum"); m_mergeBtn = (GLoader)comp.GetChild("mergeBtn"); } public void Dispose(bool disposeTarget = false) { m_bg = null; m_numList = null; m_backBtn = null; m_score = null; m_target = null; m_time = null; m_timeNum = null; m_mergeBtn = null; if(disposeTarget && target != null) { target.RemoveFromParent(); target.Dispose(); } target = null; } } }