Add facility to describe cvars

This commit is contained in:
Tim Angus 2014-09-26 14:29:51 +01:00
parent f9c202f83e
commit f83334d81b
6 changed files with 29 additions and 0 deletions

View file

@ -133,6 +133,7 @@ typedef struct {
void (*Cvar_Set)( const char *name, const char *value );
void (*Cvar_SetValue) (const char *name, float value);
void (*Cvar_CheckRange)( cvar_t *cv, float minVal, float maxVal, qboolean shouldBeIntegral );
void (*Cvar_SetDescription)( cvar_t *cv, const char *description );
int (*Cvar_VariableIntegerValue) (const char *var_name);