0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-20 17:31:08 +00:00
quakeforge/cs-code/game_def.qc
Robin Redeker c7e50a735d Added some bindings to the binding-submenu.
Added a audio-menu and soem other stuff i forgot.
2002-02-02 12:43:14 +00:00

9 lines
537 B
C++

float(string s) cvar = #45; // return cvar.value
void(string var, string val) cvar_set = #72; // sets cvar.value
string(float f) ftos = #26; // converts float to string
integer(float f) ftoi = #110; // converts float to integer
string(integer i) itos = #112; // converts interger to string
float(integer i) itof = #111; // converts interger to string
integer(string str) stoi = #113; // converts string to integer
float(string str) stof = #81; // converts string to float
void(string s) dprint = #25;