mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Fix bitflags enum raiseflags_t for C++
This commit is contained in:
parent
45c48168ef
commit
14985f6852
1 changed files with 4 additions and 6 deletions
10
src/p_spec.h
10
src/p_spec.h
|
|
@ -911,12 +911,10 @@ struct eachtime_t
|
||||||
boolean triggerOnExit;
|
boolean triggerOnExit;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum
|
typedef int raiseflag_t;
|
||||||
{
|
#define RF_REVERSE (1) //Lower when stood on
|
||||||
RF_REVERSE = 1, //Lower when stood on
|
#define RF_SPINDASH (1<<1) //Require spindash to move
|
||||||
RF_SPINDASH = 1<<1, //Require spindash to move
|
#define RF_DYNAMIC (1<<2) //Dynamically sinking platform
|
||||||
RF_DYNAMIC = 1<<2, //Dynamically sinking platform
|
|
||||||
} raiseflag_t;
|
|
||||||
|
|
||||||
struct raise_t
|
struct raise_t
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue