]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/portals.qh
Merge branch 'master' into terencehill/string_prefixes_cleanup
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / portals.qh
1 #ifndef PORTALS_H
2 #define PORTALS_H
3
4 .float portal_id;
5 .entity portal_in, portal_out;
6
7 void Portal_ClearAll(entity own);
8 void Portal_ClearAllLater(entity own);
9 float Portal_SpawnOutPortalAtTrace(entity own, vector dir, float id);
10 float Portal_SpawnInPortalAtTrace(entity own, vector dir, float id);
11 void Portal_ClearWithID(entity own, float id);
12
13 vector Portal_ApplyTransformToPlayerAngle(vector transform, vector vangle);
14 void Portal_ClearAll_PortalsOnly(entity own);
15 #endif