diff options
Diffstat (limited to 'engine/net_synctags.cpp')
| -rw-r--r-- | engine/net_synctags.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/engine/net_synctags.cpp b/engine/net_synctags.cpp new file mode 100644 index 0000000..d1864f0 --- /dev/null +++ b/engine/net_synctags.cpp @@ -0,0 +1,19 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#include "convar.h" + +// memdbgon must be the last include file in a .cpp file!!! +#include "tier0/memdbgon.h" + +#ifdef _DEBUG + +ConVar net_synctags( "net_synctags", "0", 0, "Insert tokens into the net stream to find client/server mismatches." ); + +#endif + + |