1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-12 11:42:10 +08:00
hl2sdk/game/server/episodic/ep1_gamestats.h
2008-09-15 02:50:57 -05:00

32 lines
774 B
C++

//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
//
// Purpose:
//
//=============================================================================
#ifndef EP1_GAMESTATS_H
#define EP1_GAMESTATS_H
#ifdef _WIN32
#pragma once
#endif
#include "GameStats.h"
class CEP1GameStats : public CBaseGameStats
{
typedef CBaseGameStats BaseClass;
public:
CEP1GameStats( void );
virtual CBaseGameStats *OnInit( CBaseGameStats *pCurrentGameStats, char const *gamedir );
virtual bool StatTrackingEnabledForMod( void ) { return true; }
virtual bool UserPlayedAllTheMaps( void );
virtual const char *GetStatSaveFileName( void );
virtual const char *GetStatUploadRegistryKeyName( void );
};
#endif // EP1_GAMESTATS_H