Esempio n. 1
0
        public ResponseMessage Move(string moveData)
        {
            Move move = moveData.Deserialize <Move>();
            Game game = _activeGames.FirstOrDefault(g => g.Id == move.GameId);

            return(_gameProcessor.Process(game, move));
        }