2
0
mirror of https://github.com/Facepunch/Facepunch.Steamworks.git synced 2025-07-12 08:16:14 +03:00

Adding SteamMatchmakingServers interface (for uniformity)

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

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