mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
07f897122f
Trying to build and run frikbot with ruamoko progs found a pile off issues.
18 lines
546 B
C
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
|