mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-02 06:54:07 +00:00
Fix bitflags enum targetdamaging_t for C++
This commit is contained in:
parent
3b0560052d
commit
cc4bd8f5fd
1 changed files with 10 additions and 12 deletions
|
|
@ -430,18 +430,16 @@ struct botvars_t
|
||||||
|
|
||||||
// player_t struct for round-specific condition tracking
|
// player_t struct for round-specific condition tracking
|
||||||
|
|
||||||
typedef enum
|
typedef INT32 targetdamaging_t;
|
||||||
{
|
#define UFOD_GENERIC (1)
|
||||||
UFOD_GENERIC = 1,
|
#define UFOD_BOOST (1<<1)
|
||||||
UFOD_BOOST = 1<<1,
|
#define UFOD_WHIP (1<<2)
|
||||||
UFOD_WHIP = 1<<2,
|
#define UFOD_BANANA (1<<3)
|
||||||
UFOD_BANANA = 1<<3,
|
#define UFOD_ORBINAUT (1<<4)
|
||||||
UFOD_ORBINAUT = 1<<4,
|
#define UFOD_JAWZ (1<<5)
|
||||||
UFOD_JAWZ = 1<<5,
|
#define UFOD_SPB (1<<6)
|
||||||
UFOD_SPB = 1<<6,
|
#define UFOD_GACHABOM (1<<7)
|
||||||
UFOD_GACHABOM = 1<<7,
|
// free up to and including 1<<31
|
||||||
// free up to and including 1<<31
|
|
||||||
} targetdamaging_t;
|
|
||||||
|
|
||||||
struct roundconditions_t
|
struct roundconditions_t
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue