Example #1
0
 protected override void OnClose()
 {
     curEquipFunc = EquipFunc.STRENGTHEN;
     curStrengthenCostItems.Clear();
     equipStrengthen.OnClose();
     equipAdvance.OnClose();
     equipStar.OnClose();
 }
Example #2
0
 private void TrySwitchFunc(EquipFunc func)
 {
     if (mCurEquipFunc == func)
     {
         return;
     }
     mCurEquipFunc = func;
     mStrengthenCostItems.Clear();
     ShowView();
 }