]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mapobjects/platforms.qh
Merge branch 'master' into martin-t/defaults
[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 dmgtime2;
7
8 void plat_center_touch(entity this, entity toucher);
9 void plat_outside_touch(entity this, entity toucher);
10 void plat_trigger_use(entity this, entity actor, entity trigger);
11 void plat_go_up(entity this);
12 void plat_go_down(entity this);
13 void plat_crush(entity this, entity blocker);
14
15 .float dmg;