]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - r_modules.h
relocated the CL_SendMove call to put it at the end of network parsing (and only...
[xonotic/darkplaces.git] / 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(char *name, void(*start)(void), void(*shutdown)(void), void(*newmap)(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
12 #endif
13