public Entity(Attributes attributeData) { characterType = attributeData.EntityName; Strength = attributeData.Strength; Dexterity = attributeData.Dexterity; Cunning = attributeData.Cunning; Willpower = attributeData.Willpower; Magic = attributeData.Magic; Constitution = attributeData.Constitution; health = new StatusBar(0); stamina = new StatusBar(0); mana = new StatusBar(0); }
public static Attributes FromFile(string filename) { Attributes character = new Attributes(); return character; }
public MainCharacter(Attributes attributeData) : base(attributeData) { }