mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
7d6430edd4
Move the old cvar get/set funcs to cvar.[rh] from system.[rh].
18 lines
542 B
C
18 lines
542 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 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
|