]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/states.qh
6ed47df3db48e8e99e7c7fe4c05127f707516d54
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / states.qh
1 #pragma once
2
3 #ifdef CSQC
4 // this stuff is defined in the server side engine VM, so we must define it separately here
5 const int STATE_TOP = 0;
6 const int STATE_BOTTOM = 1;
7 const int STATE_UP = 2;
8 const int STATE_DOWN = 3;
9 #endif
10
11 // breakable
12 const int STATE_ALIVE = 0;
13 const int STATE_BROKEN = 1;