mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +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
|
// Slopes
|
||||||
typedef enum {
|
typedef int slopeflags_t;
|
||||||
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.
|
#define SL_NOPHYSICS (1) /// This plane will have no physics applied besides the positioning.
|
||||||
} slopeflags_t;
|
#define SL_DYNAMIC (1<<1) /// This plane slope will be assigned a thinker to make it dynamic.
|
||||||
|
|
||||||
struct pslope_t
|
struct pslope_t
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue