public TestAttributesSystem()
 {
     Stamina              = new Attribute();
     SpellPower           = new Attribute();
     Haste                = new Attribute();
     CriticalStrikeRating = new Attribute();
     Armor                = new Attribute();
 }
 public TestAttributesSystem(Attribute stamina, Attribute spellPower, Attribute haste, Attribute criticalStrikeRating, Attribute armor)
 {
     Stamina              = stamina;
     SpellPower           = spellPower;
     Haste                = haste;
     CriticalStrikeRating = criticalStrikeRating;
     Armor                = armor;
 }