mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
4bd37e7b64
Doxygen hates the QuakeC-style function prototypes we use, so switch to the C-style prototypes.
15 lines
489 B
C
15 lines
489 B
C
#ifndef __ruamoko_server_h
|
|
#define __ruamoko_server_h
|
|
|
|
@extern void precache_sound (string s);
|
|
@extern void precache_model (string s);
|
|
@extern void stuffcmd (entity client, string s);
|
|
@extern void localcmd (string s);
|
|
@extern void changelevel (string s);
|
|
@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);
|
|
|
|
#endif//__ruamoko_server_h
|