Beispiel #1
0
        public static Request Enqueue(string pool, CustomQuery customQuery = null)
        {
            if (Core.IsInitialized())
            {
                return(new Request(CAPI.ovr_Matchmaking_Enqueue(
                                       pool,
                                       customQuery != null ? customQuery.ToUnmanaged() : IntPtr.Zero
                                       )));
            }

            return(null);
        }