quakeforge/ruamoko/include/system.h
Bill Currie 07f897122f [ruamoko] Fix several builtin declarations
Trying to build and run frikbot with ruamoko progs found a pile off
issues.
2022-11-12 14:39:18 +09:00

18 lines
546 B
C

#ifndef __ruamoko_system_h
#define __ruamoko_system_h
@extern float time;
@extern string precache_sound (string s);
@extern string 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);
@extern string gametype (void);
#endif//__ruamoko_system_h