Example #1
0
 public GEngine(double arenaWidth, double arenaHeight)
 {
     this.walls  = new Walls(arenaWidth, arenaHeight);
     this.points = new PointControler();
     this.player = new Person();
     this.enemy  = new Bot();
 }