1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00
Files
hl2sdk/public/matchmaking/imatchsystem.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
616 B
C
Raw Normal View History

//========= Copyright © 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