public int this[skillEnum type] { get { return(skill[(int)type]); } set { skill[(int)type] = value; } }
public int GetSkillValue(skillEnum type) { return(skill[(int)type]); }
public void SetSkillValue(skillEnum type, int value) { skill[(int)type] = value; }
public int this[skillEnum type] { get { return(finalAttribute[type]); } set { finalAttribute[type] = value; } }