]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/func/breakable.qh
Remove magic number state from func_breakable
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / func / breakable.qh
1 #pragma once
2 #include "../spawnflags.qh"
3
4
5 const int STATE_ALIVE = 0;
6 const int STATE_BROKEN = 1;
7
8 #ifdef SVQC
9 spawnfunc(func_breakable);
10 #endif