mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-26 22:55:55 +03:00
Adding SteamMatchmakingServers interface (for uniformity)
This commit is contained in:
parent
5d2b8a0ade
commit
1630aaae22
23
Facepunch.Steamworks/SteamMatchmakingServers.cs
Normal file
23
Facepunch.Steamworks/SteamMatchmakingServers.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user