Exemple #1
0
 protected GameListBase(AppLobby lobby)
 {
     this.Lobby        = lobby;
     this.gameDict     = new LinkedListDictionary <string, GameState>();
     this.changedGames = new Dictionary <string, GameState>();
     this.removedGames = new HashSet <string>();
 }
Exemple #2
0
        public GameList()
        {
            if (log.IsDebugEnabled)
            {
                log.DebugFormat("Creating new GameList");
            }

            this.gameDict     = new LinkedListDictionary <string, GameState>();
            this.changedGames = new Dictionary <string, GameState>();
            this.removedGames = new HashSet <string>();
        }