Ejemplo n.º 1
0
Archivo: Enemy.cs Proyecto: Chando/TD
 public void RemoveLives(Player player)
 {
     this.costLivesBehaviour.RemoveLives(player);
 }
Ejemplo n.º 2
0
 public void GiveReward(Player player)
 {
     player.Money += this.reward;
 }
Ejemplo n.º 3
0
Archivo: Enemy.cs Proyecto: Chando/TD
 public void GiveReward(Player player)
 {
     this.rewardBehaviour.GiveReward(player);
 }
Ejemplo n.º 4
0
 public void RemoveLives(Player player)
 {
     player.Lives -= lifeCost;
 }