this.board = FACTORY.createBoard();
this.dictionary = FACTORY.createDictionary();
this.dictionary.initWithLanguage(language);
this.players = new ArrayList<Player>(1);
this.playerTurn = -1;
this.stats = new GameStatisticsModelImpl();
this.gameThread = null;
this.alive = false;
}