public HeroCreator(string name, List<string> primaryStats, string biography) { this.hero = new Hero(); this.attributesCreator = new AttributesCreator() this.hero.Name = name; }
public HeroCreator(string name, List<string> primaryStats, string biography) { this.hero = new Hero(); this.hero.Name = name; this.hero.Biography = biography; this.hero.Skill = this.attributesCreator = new AttributesCreator(1, primaryStats); }
public void createHeroPrimaryStats(List<string> primaryStats) { AttributesCreator aCreator = new AttributesCreator(this.hero.ID, primaryStats); }