|
@@ -14,6 +14,7 @@ namespace UI.Friend
|
|
|
public GTextField m_txtName;
|
|
|
public GButton m_btnSend;
|
|
|
public GLoader m_loaState;
|
|
|
+ public GTextField m_txtName_2;
|
|
|
public const string URL = "ui://wez2ujnnpdeo9";
|
|
|
public const string PACKAGE_NAME = "Friend";
|
|
|
public const string RES_NAME = "ListItem";
|
|
@@ -68,6 +69,7 @@ namespace UI.Friend
|
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
|
m_btnSend = (GButton)comp.GetChild("btnSend");
|
|
|
m_loaState = (GLoader)comp.GetChild("loaState");
|
|
|
+ m_txtName_2 = (GTextField)comp.GetChild("txtName");
|
|
|
}
|
|
|
public void Dispose(bool disposeTarget = false)
|
|
|
{
|
|
@@ -78,6 +80,7 @@ namespace UI.Friend
|
|
|
m_txtName = null;
|
|
|
m_btnSend = null;
|
|
|
m_loaState = null;
|
|
|
+ m_txtName_2 = null;
|
|
|
if(disposeTarget && target != null)
|
|
|
{
|
|
|
target.RemoveFromParent();
|