]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mapobjects/target/speed.qh
Implement XDF Compatibility: target_speed
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mapobjects / target / speed.qh
1 #pragma once
2
3
4 #define SPEED_PERCENTAGE BIT(0)
5 #define SPEED_ADD        BIT(1)
6 #define SPEED_POSITIVE_X BIT(2)
7 #define SPEED_NEGATIVE_X BIT(3)
8 #define SPEED_POSITIVE_Y BIT(4)
9 #define SPEED_NEGATIVE_Y BIT(5)
10 #define SPEED_POSITIVE_Z BIT(6)
11 #define SPEED_NEGATIVE_Z BIT(7)
12 #define SPEED_LAUNCHER   BIT(8)