Exemplo n.º 1
0
 private void SetupContributeGoIn(RankingInfoOne resData, BossRankEntry toData)
 {
     if (toData == null || resData == null)
     {
         return;
     }
     toData.Name   = resData.name;
     toData.Rank   = Convert.ToString(resData.value);
     toData.Damage = Convert.ToString(resData.value);
     toData.Show   = true;
 }
Exemplo n.º 2
0
 private void SetupCopyContributeInto(RankingInfoOne resData, CortributionRankEntry toData)
 {
     if (toData == null || resData == null)
     {
         return;
     }
     toData.Name     = resData.name;
     toData.Rank     = Convert.ToString(resData.rank);
     toData.Damage   = Convert.ToString(resData.value);
     toData.ItemList = GetMineCortributeAwardPropList(resData.rank);
     toData.Show     = true;
 }