mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-24 19:13:38 +00:00
Fix bitflags enum polywaypointflags_e for C++
This commit is contained in:
parent
933e1db424
commit
1367261b8a
1 changed files with 3 additions and 5 deletions
|
|
@ -276,11 +276,9 @@ struct polymovedata_t
|
|||
UINT8 overRide; // if true, will override any action on the object
|
||||
};
|
||||
|
||||
typedef enum
|
||||
{
|
||||
PWF_REVERSE = 1, // Move through waypoints in reverse order
|
||||
PWF_LOOP = 1<<1, // Loop movement (used with PWR_WRAP or PWR_COMEBACK)
|
||||
} polywaypointflags_e;
|
||||
typedef INT32 polywaypointflags_e;
|
||||
#define PWF_REVERSE (1) // Move through waypoints in reverse order
|
||||
#define PWF_LOOP (1<<1) // Loop movement (used with PWR_WRAP or PWR_COMEBACK)
|
||||
|
||||
struct polywaypointdata_t
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue