mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-10 06:31:52 +00:00
15 lines
324 B
C++
15 lines
324 B
C++
|
#ifndef MAPENTS_POWERUP_qh
|
||
|
#define MAPENTS_POWERUP_qh 1
|
||
|
|
||
|
#include "math.qh"
|
||
|
|
||
|
#define OVERPRIO_DEFAULT 0
|
||
|
|
||
|
#define OVERPRIO_SUIT OVERPRIO_DEFAULT
|
||
|
#define OVERPRIO_PENTAGRAM (OVERPRIO_SUIT-10)
|
||
|
#define OVERPRIO_QUAD OVERPRIO_DEFAULT
|
||
|
#define OVERPRIO_RING OVERPRIO_DEFAULT
|
||
|
#define OVERPRIO_MEGAHEALTH OVERPRIO_DEFAULT
|
||
|
|
||
|
#endif
|