]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mapobjects/func/breakable.qh
Merge branch 'divVerent/simpler-clipped-rectangle' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mapobjects / func / breakable.qh
1 #pragma once
2
3
4 const int BREAKABLE_INDICATE_DAMAGE = BIT(1);
5 const int BREAKABLE_NODAMAGE = BIT(2);
6
7 const int STATE_ALIVE = 0;
8 const int STATE_BROKEN = 1;
9
10 #ifdef SVQC
11 spawnfunc(func_breakable);
12 #endif