Exemplo n.º 1
0
    public void AddPoint(StatAttribute statType)
    {
        if (AllocatedStats.ContainsKey(statType))
        {
            AllocatedStats[statType] += 1;
            return;
        }

        AllocatedStats[statType] = 1;
    }
Exemplo n.º 2
0
 public void ResetPoints()
 {
     AllocatedStats.Clear();
 }