blob: 1b08f007c700ad3b73b0dc1451d769230c72055f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Provides access to cvars that are bounded in the client DLL.
//
// $NoKeywords: $
//=============================================================================//
#ifndef CDLL_BOUNDED_CVARS_H
#define CDLL_BOUNDED_CVARS_H
#ifdef _WIN32
#pragma once
#endif
#include "convar_serverbounded.h"
extern ConVar_ServerBounded *cl_predict;
extern ConVar_ServerBounded *cl_interp;
// Returns cl_interp_ratio / cl_updaterate.
float GetClientInterpAmount();
#if !defined( NO_ENTITY_PREDICTION )
extern bool g_bForceCLPredictOff; // If this is set to true, then prediction is forced off. Used temporarily for kill cam.
#endif
#endif // CDLL_BOUNDED_CVARS_H
|