diff --git a/Facepunch.Steamworks/SteamMatchmakingServers.cs b/Facepunch.Steamworks/SteamMatchmakingServers.cs new file mode 100644 index 0000000..b7c0173 --- /dev/null +++ b/Facepunch.Steamworks/SteamMatchmakingServers.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Runtime.InteropServices; +using System.Text; +using System.Threading.Tasks; +using Steamworks.Data; + +namespace Steamworks +{ + /// + /// Functions for clients to access matchmaking services, favorites, and to operate on game lobbies + /// + public class SteamMatchmakingServers : SteamClass + { + internal static ISteamMatchmakingServers Internal; + internal override SteamInterface Interface => Internal; + + internal override void InitializeInterface() + { + Internal = new ISteamMatchmakingServers(); + } + } +} \ No newline at end of file