]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/triggers/func/breakable.qh
Move non-generic entity flags to their own headers
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / func / breakable.qh
index 9b16355ddd4e1015f0dd86fac9b384a44ed9abe0..0efbcfaed5eb809c544d2f245d02467096b56ba7 100644 (file)
@@ -1,8 +1,12 @@
 #pragma once
-#include "../spawnflags.qh"
-#include "../states.qh"
 
 
+const int BREAKABLE_INDICATE_DAMAGE = BIT(1);
+const int BREAKABLE_NODAMAGE = BIT(2);
+
+const int STATE_ALIVE = 0;
+const int STATE_BROKEN = 1;
+
 #ifdef SVQC
 spawnfunc(func_breakable);
 #endif