mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 05:30:31 +00:00
4bd37e7b64
Doxygen hates the QuakeC-style function prototypes we use, so switch to the C-style prototypes.
20 lines
621 B
C
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
|