コード例 #1
0
ファイル: Enemy.cs プロジェクト: Chando/TD
 public void RemoveLives(Player player)
 {
     this.costLivesBehaviour.RemoveLives(player);
 }
コード例 #2
0
ファイル: StandardReward.cs プロジェクト: Chando/TD
 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
ファイル: StandardCostLives.cs プロジェクト: Chando/TD
 public void RemoveLives(Player player)
 {
     player.Lives -= lifeCost;
 }