]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/util.qh
Fix issues with FL2VEC
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / util.qh
index a9f9095c7a40492e6615258364cc0ca059c08620..184cdec34ccf0c4403a4f5648d1c4898fa3c4583 100644 (file)
@@ -430,3 +430,6 @@ void dedicated_print(string input);
 #define CNT_ROUNDSTART 6
 float Announcer_PickNumber(float type, float num);
 #endif
+
+// TODO: Replace this with new gmqcc syntax when available
+#define FL2VEC(x,y,z) ((eX * (x)) + (eY * (y)) + (eZ * (z)))