Exemple #1
0
 public Enemy(float startingHealth, Holdable spell) : base(startingHealth)
 {
     _spell = spell;
 }
Exemple #2
0
 public Player(float startingHealth, Holdable weapon) : base(startingHealth)
 {
     _holdable = weapon;
 }