예제 #1
0
 public StartGameCommand(ITwgeService gameService, GameContext game) : base(gameService) => _game = game;
예제 #2
0
 public GameCommandBase(ITwgeService gameService) => GameService = gameService;
예제 #3
0
 public PlayColumnCommand(ITwgeService gameService, PlayerContext player) : base(gameService)
 {
     _player = player;
 }
예제 #4
0
 public ResetGameCommand(ITwgeService gameService, IGameContext game) : base(gameService)
 {
     _game = game;
 }
예제 #5
0
 public SwitchPlayerCommand(ITwgeService gameService, PlayerContext player) : base(gameService)
 {
     _player = player;
 }
예제 #6
0
 public QuitGameCommand(ITwgeService gameService) : base(gameService)
 {
 }