]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/func/door.qh
e91061f14ce06950362a9003547a6744baeb7776
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / func / door.qh
1 // door constants
2 const int DOOR_START_OPEN = 1;
3 const int DOOR_DONT_LINK = 4;
4 const int DOOR_TOGGLE = 32;
5
6 const int DOOR_NOSPLASH = 256; // generic anti-splashdamage spawnflag
7
8 const int SPAWNFLAGS_GOLD_KEY = 8;
9 const int SPAWNFLAGS_SILVER_KEY = 16;
10
11 #ifdef CSQC
12 // stuff for preload
13 void ent_door();
14
15 // abused
16 .float attack_finished_single;
17 #endif