Ejemplo n.º 1
0
        public double GetPositionWeight(HM.Resources.PlayerSkillTypes skill)
        {
            double weight = 0;

            if (this.positionWeights.ContainsKey(skill))
            {
                weight = this.positionWeights[skill];
            }

            return(weight);
        }
Ejemplo n.º 2
0
 public void SetPositionWeight(HM.Resources.PlayerSkillTypes skill, double weight)
 {
     this.positionWeights[skill] = weight;
 }