Exemple #1
0
        public void HostGame(bool publicMatch, int maxPlayers, Match.MatchType matchType)
        {
            string matchID = MatchMaker.GetRandomMatchID();

            CmdHostGame(matchID, publicMatch, maxPlayers, matchType);
            PrintIdentity();
        }
Exemple #2
0
        /*
         *  HOST MATCH
         */

        public void HostGame(bool publicMatch)
        {
            string matchID = MatchMaker.GetRandomMatchID();

            CmdHostGame(matchID, publicMatch);
        }