|
@@ -8,7 +8,6 @@ namespace UI.Card
|
|
|
{
|
|
|
public GComponent target;
|
|
|
public Controller m_c1;
|
|
|
- public GGraph m_bgTouch;
|
|
|
public GGraph m_holderBgCom;
|
|
|
public GGraph m_holderTitle;
|
|
|
public GTextField m_txtLast;
|
|
@@ -65,7 +64,6 @@ namespace UI.Card
|
|
|
private void Init(GComponent comp)
|
|
|
{
|
|
|
m_c1 = comp.GetController("c1");
|
|
|
- m_bgTouch = (GGraph)comp.GetChild("bgTouch");
|
|
|
m_holderBgCom = (GGraph)comp.GetChild("holderBgCom");
|
|
|
m_holderTitle = (GGraph)comp.GetChild("holderTitle");
|
|
|
m_txtLast = (GTextField)comp.GetChild("txtLast");
|
|
@@ -78,7 +76,6 @@ namespace UI.Card
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
|
m_c1 = null;
|
|
|
- m_bgTouch = null;
|
|
|
m_holderBgCom = null;
|
|
|
m_holderTitle = null;
|
|
|
m_txtLast = null;
|