1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-10 19:02:11 +08:00
hl2sdk/public/matchmaking/idatacenter.h

20 lines
290 B
C
Raw Normal View History

#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_