Example #1
0
 public BotGameController(IGameBot bot, GameParameters parameters)
 {
     this.bot        = bot;
     controller      = new GameController(parameters);
     this.parameters = parameters;
 }
Example #2
0
 public GameController(GameParameters parameters)
 {
     this.parameters = (GameParameters)parameters.Clone();
     rnd             = parameters.Random;
     ResetGame();
 }
Example #3
0
 public GameRecord(GameParameters parameters)
 {
     _record         = new List <GameRecordItem>();
     this.parameters = parameters;
 }