]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/warpzone/server.qh
s/(void)/()
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / warpzone / server.qh
1 #ifndef LIB_WARPZONE_SERVER_H
2 #define LIB_WARPZONE_SERVER_H
3
4 void WarpZone_StartFrame();
5 float WarpZone_Projectile_Touch();
6
7 // THESE must be defined by calling QC code:
8 void WarpZone_PostTeleportPlayer_Callback(entity pl);
9 float WarpZone_Projectile_Touch_ImpactFilter_Callback();
10
11 // server must also define a float called ENT_CLIENT_WARPZONE for the initial byte of WarpZone entities
12 //const float ENT_CLIENT_WARPZONE;
13 //const float ENT_CLIENT_WARPZONE_CAMERA;
14
15 void WarpZone_PlayerPhysics_FixVAngle();
16
17 void WarpZone_PostInitialize_Callback();
18 #endif