mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-22 12:24:13 +00:00
15 lines
725 B
C++
15 lines
725 B
C++
//====== Copyright © 1996-2006, Valve Corporation, All rights reserved. =======//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================//
|
|
|
|
#include "cbase.h"
|
|
#include "asw_gamestats.h"
|
|
|
|
// Must run with -gamestats to be able to turn on/off stats with ConVar below.
|
|
static ConVar asw_stats_track( "asw_stats_track", "0", FCVAR_ARCHIVE, "Turn on//off Infested stats tracking." );
|
|
static ConVar asw_stats_verbose( "asw_stats_verbose", "0", FCVAR_NONE, "Turn on//off verbose logging of stats." );
|
|
static ConVar asw_stats_nogameplaycheck( "asw_stats_nogameplaycheck", "0", FCVAR_NONE , "Disable normal check for valid gameplay, send stats regardless." );
|
|
|
|
CASWGameStats CASW_GameStats; |