예제 #1
0
 public AttackingState(
     World world, 
     Body body, 
     ComputerControlledTank tank)
 {
     this.world = world;
     this.body = body;
     this.tank = tank;
 }
예제 #2
0
 public TurningState(Body body, ComputerControlledTank tank)
 {
     this.body = body;
     this.tank = tank;
 }