Beispiel #1
0
 public void StartGame(String game, GameConfig config = null, IUserRepository userRepo = null)
 {
     _game = GameFactory.Create(game, _users, config, "", userRepo);
 }
Beispiel #2
0
 public void StartGame(String game, GameConfig config = null)
 {
     _game = GameFactory.Create(game, _users, config);
 }