|
@@ -9,6 +9,7 @@ namespace UI.ClothingShop
|
|
public GComponent target;
|
|
public GComponent target;
|
|
public Controller m_c1;
|
|
public Controller m_c1;
|
|
public GLoader m_rarity;
|
|
public GLoader m_rarity;
|
|
|
|
+ public GLoader m_loaMainScore;
|
|
public GTextField m_txtName;
|
|
public GTextField m_txtName;
|
|
public GLoader m_icon;
|
|
public GLoader m_icon;
|
|
public GImage m_imgOwned;
|
|
public GImage m_imgOwned;
|
|
@@ -63,6 +64,7 @@ namespace UI.ClothingShop
|
|
{
|
|
{
|
|
m_c1 = comp.GetController("c1");
|
|
m_c1 = comp.GetController("c1");
|
|
m_rarity = (GLoader)comp.GetChild("rarity");
|
|
m_rarity = (GLoader)comp.GetChild("rarity");
|
|
|
|
+ m_loaMainScore = (GLoader)comp.GetChild("loaMainScore");
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
m_txtName = (GTextField)comp.GetChild("txtName");
|
|
m_icon = (GLoader)comp.GetChild("icon");
|
|
m_icon = (GLoader)comp.GetChild("icon");
|
|
m_imgOwned = (GImage)comp.GetChild("imgOwned");
|
|
m_imgOwned = (GImage)comp.GetChild("imgOwned");
|
|
@@ -73,6 +75,7 @@ namespace UI.ClothingShop
|
|
{
|
|
{
|
|
m_c1 = null;
|
|
m_c1 = null;
|
|
m_rarity = null;
|
|
m_rarity = null;
|
|
|
|
+ m_loaMainScore = null;
|
|
m_txtName = null;
|
|
m_txtName = null;
|
|
m_icon = null;
|
|
m_icon = null;
|
|
m_imgOwned = null;
|
|
m_imgOwned = null;
|