]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mapobjects/platforms.qh
Some more defs.qh cleanup, update gameplay hash (again)
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mapobjects / platforms.qh
1 #pragma once
2
3
4 const int PLAT_LOW_TRIGGER = BIT(0);
5
6 .float dmg;
7 .float dmgtime;
8 .float dmgtime2;
9
10 .float phase;
11
12 void plat_center_touch(entity this, entity toucher);
13 void plat_outside_touch(entity this, entity toucher);
14 void plat_trigger_use(entity this, entity actor, entity trigger);
15 void plat_go_up(entity this);
16 void plat_go_down(entity this);
17 void plat_crush(entity this, entity blocker);