Пример #1
0
        public static Request <Models.MatchmakingBrowseResult> Browse(string pool, CustomQuery customQuery = null)
        {
            if (Core.IsInitialized())
            {
                return(new Request <Models.MatchmakingBrowseResult>(CAPI.ovr_Matchmaking_Browse(
                                                                        pool,
                                                                        customQuery != null ? customQuery.ToUnmanaged() : IntPtr.Zero
                                                                        )));
            }

            return(null);
        }