diff options
Diffstat (limited to 'engine/cl_bounded_cvars.h')
| -rw-r--r-- | engine/cl_bounded_cvars.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/engine/cl_bounded_cvars.h b/engine/cl_bounded_cvars.h new file mode 100644 index 0000000..0aa0af8 --- /dev/null +++ b/engine/cl_bounded_cvars.h @@ -0,0 +1,23 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: Provides access to cvar values that are bounded by the server. +// +//=============================================================================// + +#ifndef CL_BOUNDED_CVARS_H +#define CL_BOUNDED_CVARS_H +#ifdef _WIN32 +#pragma once +#endif + + +#include "convar_serverbounded.h" + + +extern ConVar_ServerBounded *cl_rate; +extern ConVar_ServerBounded *cl_cmdrate; +extern ConVar_ServerBounded *cl_updaterate; + + +#endif // CL_BOUNDED_CVARS_H + |