quakeforge/cs-code/game_def.qc
2002-01-31 21:10:43 +00:00

6 lines
352 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
void(string s) dprint = #25;