Exemplo n.º 1
0
        public IHttpActionResult GetDescription(string gameIdentifier)
        {
            var game = _gameCoordinator.GetGame(gameIdentifier);

            return(Ok(game.GetDescription()));
        }
Exemplo n.º 2
0
        public void MoveLeft(string gameIdentifier)
        {
            var game = _gameCoordinator.GetGame(gameIdentifier);

            game.MoveLeft(Context.ConnectionId);
        }