Exemplo n.º 1
0
        public List <Player> GetPlayersInRoom(int roomId)
        {
            var game = _gameService.GetGameById(roomId);

            if (game != null)
            {
                List <Player> gmPlayers = _gameService.GetPlayersInRoom(roomId);
                return(gmPlayers);
            }
            return(null);
        }