quakeforge/ruamoko/include/system.h
Jeff Teunissen 4bd37e7b64 Switch to C-style function declarations.
Doxygen hates the QuakeC-style function prototypes we use, so switch to the
C-style prototypes.
2010-12-11 20:31:59 -05:00

20 lines
621 B
C

#ifndef __ruamoko_system_h
#define __ruamoko_system_h
@extern float time;
@extern void precache_sound (string s);
@extern void precache_model (string s);
@extern void stuffcmd (entity client, string s);
@extern float cvar (string s);
@extern void localcmd (string s);
@extern void changelevel (string s);
@extern void cvar_set (string var, string val);
@extern string precache_file (string s);
@extern string precache_model2 (string s);
@extern string precache_sound2 (string s);
@extern string precache_file2 (string s);
@extern float checkextension (void);
@extern string gametype (void);
#endif//__ruamoko_system_h