mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
c7e50a735d
Added a audio-menu and soem other stuff i forgot.
9 lines
537 B
C++
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;
|