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.
24 lines
428 B
24 lines
428 B
5 years ago
|
//========= 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
|