]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/func/door.qh
b58091b0ad8cd76a1ed330b63ce4c3d09e0da205
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / func / door.qh
1 // door constants
2 const float DOOR_START_OPEN = 1;
3 const float DOOR_DONT_LINK = 4;
4 const float DOOR_TOGGLE = 32;
5
6 const float DOOR_NOSPLASH = 256; // generic anti-splashdamage spawnflag
7
8 const float SPAWNFLAGS_GOLD_KEY = 8;
9 const float 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