WebSocketServer.CardServer.CardServer C# (CSharp) Method

CardServer() public method

Initializes a new instance of the CardServer class, with the specified admin password.
public CardServer ( string adminPass ) : System.Collections.Generic
adminPass string The admin password for this game.
return System.Collections.Generic
        public CardServer(string adminPass)
        {
            Clients = new List<Client>();
            Admins = new List<Client>();
            Rounds = new List<Round>();
            AdminPassword = adminPass;
            Settings = new Dictionary<string, string>();
        }