mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-07 09:43:40 +08:00
20 lines
290 B
C++
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_
|