1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-07 09:43:40 +08:00
hl2sdk/public/matchmaking/idatacenter.h
2010-07-22 01:46:14 -05:00

20 lines
290 B
C++

#ifndef _IDATACENTER_H_
#define _IDATACENTER_H_
class IDatacenter;
#include "imatchsystem.h"
abstract_class IDatacenter
{
public:
//
// GetStats
// retrieves the last received datacenter stats
//
virtual KeyValues * GetStats() = 0;
};
#endif // _IDATACENTER_H_