예제 #1
0
 public void TakeHit(Robot attacker, Robot_WithStrategy me)
 {
     me.RechargeWeapon();
     me.Attack(attacker);
 }
예제 #2
0
 public void SeeEnemy(Robot enemy, Robot_WithStrategy me)
 {
     me.Attack(enemy);
 }