コード例 #1
0
ファイル: Knight.cs プロジェクト: cdie/PPPGames
 public void TakeHit(Knight other)
 {
     PointsOfLife = (int)Math.Max(0, PointsOfLife - other.SwordDamage);
     Alive        = PointsOfLife > 0;
 }
コード例 #2
0
ファイル: Knight.cs プロジェクト: cdie/PPPGames
 public void Hit(Knight other)
 {
     other.TakeHit(this);
 }