mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +00:00
Fix bitflags enum slopeflags_t for C++
This commit is contained in:
parent
1add66786c
commit
252eca52c4
1 changed files with 4 additions and 4 deletions
|
|
@ -294,10 +294,10 @@ struct r_lightlist_t
|
|||
};
|
||||
|
||||
// Slopes
|
||||
typedef enum {
|
||||
SL_NOPHYSICS = 1, /// This plane will have no physics applied besides the positioning.
|
||||
SL_DYNAMIC = 1<<1, /// This plane slope will be assigned a thinker to make it dynamic.
|
||||
} slopeflags_t;
|
||||
typedef int slopeflags_t;
|
||||
|
||||
#define SL_NOPHYSICS (1) /// This plane will have no physics applied besides the positioning.
|
||||
#define SL_DYNAMIC (1<<1) /// This plane slope will be assigned a thinker to make it dynamic.
|
||||
|
||||
struct pslope_t
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue