public Entity(string name, PersoType type, int hp, Weapon weapon, POO.Stormp.Stormtroopers escouade) { this.Name = name; this.type = type; this.hp = hp; this.Weapon = weapon; this.Escouade = escouade; }
public Jedi(string name, PersoType type, int hp, Weapon weapon, POO.Stormp.Stormtroopers escouade, int attack, int heal) : base(name, type, hp, weapon, escouade, attack) { this.Heal = heal; }
public Sith(string name, PersoType type, int hp, Weapon weapon, POO.Stormp.Stormtroopers escouade, int attack) : base(name, type, hp, weapon, escouade) { this.Attack = attack; }