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

            CmdHostGame(matchID, publicMatch, maxPlayers, matchType);
            PrintIdentity();
        }
コード例 #2
0
ファイル: Player.cs プロジェクト: faruk145/Unity-Projects
        /*
         *  HOST MATCH
         */

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

            CmdHostGame(matchID, publicMatch);
        }