Example #1
0
 public Engine()
 {
     this.arenaController = new ArenaController();
 }
Example #2
0
 public Engine(ArenaController arenaController)
 {
     this.arenaController = arenaController;
     this.resultString    = new StringBuilder();
     this.isRunning       = true;
 }