Esempio n. 1
0
 //清除数据
 public void clear()
 {
     if (oppInfos != null)
     {
         oppInfos = null;
     }
     if (pvpRankInfo != null)
     {
         pvpRankInfo = null;
     }
     if (bfLists != null)
     {
         bfLists = null;
     }
     if (cupOpp != null)
     {
         cupOpp = null;
     }
     if (callback != null)
     {
         callback = null;
     }
     if (currentOpp != null)
     {
         currentOpp = null;
     }
     this.currentCompleteRound = 0;
     this.isGetPrize           = false;
     this.oppIndex             = 0;
     this.callback             = null;
     this.isStartTime          = false;
 }
Esempio n. 2
0
 public void createPvpRankInfo(int win, int rank)
 {
     pvpRankInfo = new PvpRankInfo(win, rank);
 }