From aeec6f59efb57666066a6ea353dad066f2afcff1 Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Fri, 11 Nov 2016 10:44:15 +0000 Subject: [PATCH] Open matchmaking interface --- Facepunch.Steamworks/Interop/Native.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Facepunch.Steamworks/Interop/Native.cs b/Facepunch.Steamworks/Interop/Native.cs index 3ccf25c..8cd5d5a 100644 --- a/Facepunch.Steamworks/Interop/Native.cs +++ b/Facepunch.Steamworks/Interop/Native.cs @@ -14,6 +14,7 @@ internal class NativeInterface : IDisposable internal SteamNative.SteamApps apps; internal SteamNative.SteamFriends friends; internal SteamNative.SteamMatchmakingServers servers; + internal SteamNative.SteamMatchmaking matchmaking; internal SteamNative.SteamInventory inventory; internal SteamNative.SteamNetworking networking; internal SteamNative.SteamUserStats userstats; @@ -105,6 +106,7 @@ public void FillInterfaces( BaseSteamworks steamworks, int hpipe, int huser ) userstats = client.GetISteamUserStats( huser, hpipe, SteamNative.Defines.STEAMUSERSTATS_INTERFACE_VERSION ); screenshots = client.GetISteamScreenshots( huser, hpipe, SteamNative.Defines.STEAMSCREENSHOTS_INTERFACE_VERSION ); remoteStorage = client.GetISteamRemoteStorage( huser, hpipe, SteamNative.Defines.STEAMREMOTESTORAGE_INTERFACE_VERSION ); + matchmaking = client.GetISteamMatchmaking( huser, hpipe, SteamNative.Defines.STEAMMATCHMAKING_INTERFACE_VERSION ); } public void Dispose()