source-engine/game/shared/GameStats.cpp

17 lines
558 B
C++
Raw Normal View History

2023-10-03 14:23:56 +00:00
//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
2020-04-22 16:56:21 +00:00
//
// Purpose:
//
//=============================================================================
2023-10-03 14:23:56 +00:00
#include "cbase.h"
#include "GameStats.h"
2020-04-22 16:56:21 +00:00
// NOTE: This has to be the last file included!
#include "tier0/memdbgon.h"
static CBaseGameStats s_GameStats_Singleton;
CBaseGameStats *gamestats = &s_GameStats_Singleton; //start out pointing at the basic version which does nothing by default
2023-10-03 14:23:56 +00:00
void UpdatePerfStats( void ) { }
void SetGameStatsHandler( CGameStats *pGameStats ) { }