Пример #1
0
 public string GetBuffDesp(eBuffType buffType)
 {
     if (BuffDesp.ContainsKey(buffType.ToString()))
     {
         return(BuffDesp[buffType.ToString()]);
     }
     return("丢失");
 }
Пример #2
0
    public string CreateBuff(eBuffType typeOfBuff, int level)
    {
        string typeOfBuffPlusLv = typeOfBuff.ToString() + level;

        return(typeOfBuffPlusLv);
    }