mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-09 18:31:53 +00:00
Fix bitflags enum polyturnflags_e for C++
This commit is contained in:
parent
2e5c0ed531
commit
933e1db424
1 changed files with 3 additions and 5 deletions
|
|
@ -254,11 +254,9 @@ typedef INT32 textmappolyrotate_t;
|
||||||
#define TMPR_CONTINUOUS (1<<2)
|
#define TMPR_CONTINUOUS (1<<2)
|
||||||
#define TMPR_OVERRIDE (1<<3)
|
#define TMPR_OVERRIDE (1<<3)
|
||||||
|
|
||||||
typedef enum
|
typedef INT32 polyturnflags_e;
|
||||||
{
|
#define PTF_PLAYERS (1) // Turn players with movement
|
||||||
PTF_PLAYERS = 1, // Turn players with movement
|
#define PTF_OTHERS (1<<1) // Turn other mobjs with movement
|
||||||
PTF_OTHERS = 1<<1, // Turn other mobjs with movement
|
|
||||||
} polyturnflags_e;
|
|
||||||
|
|
||||||
struct polyrotdata_t
|
struct polyrotdata_t
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue