]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - misc/source/darkplaces-src/r_modules.h
Include the source of the Darkplaces engine too
[voretournament/voretournament.git] / misc / source / darkplaces-src / r_modules.h
1
2 #ifndef R_MODULES_H
3 #define R_MODULES_H
4
5 void R_Modules_Init(void);
6 void R_RegisterModule(const char *name, void(*start)(void), void(*shutdown)(void), void(*newmap)(void), void(*devicelost)(void), void(*devicerestored)(void));
7 void R_Modules_Start(void);
8 void R_Modules_Shutdown(void);
9 void R_Modules_NewMap(void);
10 void R_Modules_Restart(void);
11 void R_Modules_DeviceLost(void);
12 void R_Modules_DeviceRestored(void);
13
14 #endif
15