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