public GameState InitializeGame() { BoardState boardState = BoardFactory.Standard(); return(GameFactory.NewGame(boardState, serviceProvider)); }
public void StartGame(string gameName, GameConfig config = null, IPlayerRepository repo = null) { _game = GameFactory.Create(gameName, _players, repo, config, ""); }