]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/triggers/trigger/swamp.qh
Merge branch 'master' into terencehill/quickmenu
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / trigger / swamp.qh
1 #ifndef TRIGGER_SWAMP_H
2 #define TRIGGER_SWAMP_H
3
4 .float swamp_interval;  //Hurt players in swamp with this interval
5 .float swamp_slowdown;  //Players in swamp get slowd down by this mutch 0-1 is slowdown 1-~ is speedup (!?)
6 .entity swampslug;
7
8 .float in_swamp;              // bool
9 .entity swampslug;            // Uses this to release from swamp ("untouch" fix)
10
11 #ifdef CSQC
12 void ent_swamp();
13 #endif
14
15 #endif