You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
428 B
23 lines
428 B
//========= 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
|
|
|