Пример #1
0
Файл: Enemy.cs Проект: Chando/TD
 public void RemoveLives(Player player)
 {
     this.costLivesBehaviour.RemoveLives(player);
 }
Пример #2
0
 public void GiveReward(Player player)
 {
     player.Money += this.reward;
 }
Пример #3
0
Файл: Enemy.cs Проект: Chando/TD
 public void GiveReward(Player player)
 {
     this.rewardBehaviour.GiveReward(player);
 }
Пример #4
0
 public void RemoveLives(Player player)
 {
     player.Lives -= lifeCost;
 }