예제 #1
0
 public SkillBuff(enumSkill score, int value)
 {
     this.SkillToBuff = score;
     this.Value = value;
 }
예제 #2
0
 public Skill GetSkill(enumSkill e)
 {
     return((this.mVecSkill.Count <= (int)e) ? this.mVecSkill[0] : this.mVecSkill[(int)e]);
 }