mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 20:16:10 +08:00
Added headers for matchmaking library (#67)
This commit is contained in:
28
public/matchmaking/imatchsystem.h
Normal file
28
public/matchmaking/imatchsystem.h
Normal file
@ -0,0 +1,28 @@
|
||||
//========= Copyright <20> 1996-2009, Valve Corporation, All rights reserved. ============//
|
||||
|
||||
#ifndef _IMATCHSYSTEM_H_
|
||||
#define _IMATCHSYSTEM_H_
|
||||
|
||||
class IPlayerManager;
|
||||
class IGameManager;
|
||||
class IServerManager;
|
||||
class ISearchManager;
|
||||
class IMatchVoice;
|
||||
class IDatacenter;
|
||||
|
||||
class IMatchSystem
|
||||
{
|
||||
public:
|
||||
virtual ::IPlayerManager * GetPlayerManager() = 0;
|
||||
|
||||
virtual IMatchVoice * GetMatchVoice() = 0;
|
||||
|
||||
virtual IServerManager * GetUserGroupsServerManager() = 0;
|
||||
|
||||
virtual ISearchManager * CreateGameSearchManager( KeyValues *pParams ) = 0;
|
||||
|
||||
virtual IDatacenter * GetDatacenter() = 0;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user