Open matchmaking interface

This commit is contained in:
Garry Newman 2016-11-11 10:44:15 +00:00
parent 6a5603a121
commit aeec6f59ef

View File

@ -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()