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.
24 lines
522 B
24 lines
522 B
5 years ago
|
//========= 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
|
||
|
|