コード例 #1
0
ファイル: Side.cs プロジェクト: fbunjik/starwars-inheritance
 public void KillWarrior(BattleSimulator simulator)
 {
     _current.OnLeaveBattle(simulator);
     Console.WriteLine($"{_current.Name} kiesett");
     _current = null;
 }