Adding SteamMatchmakingServers interface (for uniformity)

This commit is contained in:
Garry Newman 2020-02-11 10:16:41 +00:00
parent 5d2b8a0ade
commit 1630aaae22

View File

@ -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
{
/// <summary>
/// Functions for clients to access matchmaking services, favorites, and to operate on game lobbies
/// </summary>
public class SteamMatchmakingServers : SteamClass
{
internal static ISteamMatchmakingServers Internal;
internal override SteamInterface Interface => Internal;
internal override void InitializeInterface()
{
Internal = new ISteamMatchmakingServers();
}
}
}