Exemplo n.º 1
0
 public Enemy(float startingHealth, Holdable spell) : base(startingHealth)
 {
     _spell = spell;
 }
Exemplo n.º 2
0
 public Player(float startingHealth, Holdable weapon) : base(startingHealth)
 {
     _holdable = weapon;
 }