public void HostGame(bool publicMatch, int maxPlayers, Match.MatchType matchType) { string matchID = MatchMaker.GetRandomMatchID(); CmdHostGame(matchID, publicMatch, maxPlayers, matchType); PrintIdentity(); }
/* * HOST MATCH */ public void HostGame(bool publicMatch) { string matchID = MatchMaker.GetRandomMatchID(); CmdHostGame(matchID, publicMatch); }