You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
535 B
23 lines
535 B
//========= Copyright © 1996-2005, 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
|
|
|