mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-29 17:43:01 +00:00
24 lines
428 B
C++
24 lines
428 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef HL2_GAMESTATS_H
|
|
#define HL2_GAMESTATS_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "gamestats.h"
|
|
|
|
class CHL2GameStats : public CBaseGameStats
|
|
{
|
|
typedef CBaseGameStats BaseClass;
|
|
|
|
public:
|
|
CHL2GameStats( void );
|
|
};
|
|
|
|
#endif // EP1_GAMESTATS_H
|