Add Matchmaking Interface to GameServer.

This commit is contained in:
KyleSanderson
2014-03-27 20:10:20 -06:00
parent 6a028fa64f
commit 934234809f
2 changed files with 19 additions and 0 deletions
+2
View File
@@ -34,6 +34,7 @@ class SteamWorksGameServer
ISteamNetworking *GetNetworking(void);
ISteamGameServerStats *GetServerStats(void);
ISteamHTTP *GetHTTP(void);
ISteamMatchmaking *GetMatchmaking(void);
public:
void Reset(void);
private:
@@ -45,6 +46,7 @@ class SteamWorksGameServer
ISteamNetworking *m_pNetworking;
ISteamGameServerStats *m_pStats;
ISteamHTTP *m_pHTTP;
ISteamMatchmaking *m_pMatchmaking;
bool loaded;
};