示例#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);
 }