public void RemoveLives(Player player) { this.costLivesBehaviour.RemoveLives(player); }
public void GiveReward(Player player) { player.Money += this.reward; }
public void GiveReward(Player player) { this.rewardBehaviour.GiveReward(player); }
public void RemoveLives(Player player) { player.Lives -= lifeCost; }