mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
a590700249
move gib.h to include/QF fix up the refs to gib.h
7 lines
322 B
C
7 lines
322 B
C
void GIB_Module_Load (char *name, QFile *f);
|
|
gib_module_t *GIB_Create_Module (char *name);
|
|
gib_sub_t *GIB_Create_Sub (gib_module_t *mod, char *name);
|
|
void GIB_Read_Sub (gib_sub_t *sub, QFile *f);
|
|
gib_module_t *GIB_Find_Module (char *name);
|
|
gib_sub_t *GIB_Find_Sub (gib_module_t *mod, char *name);
|
|
void GIB_Stats_f (void);
|