public void TakeHit(Robot attacker, Robot_WithStrategy me) { me.RechargeWeapon(); me.Attack(attacker); }
public void SeeEnemy(Robot enemy, Robot_WithStrategy me) { me.Attack(enemy); }