mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +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
|
UINT8 overRide; // if true, will override any action on the object
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum
|
typedef INT32 polywaypointflags_e;
|
||||||
{
|
#define PWF_REVERSE (1) // Move through waypoints in reverse order
|
||||||
PWF_REVERSE = 1, // Move through waypoints in reverse order
|
#define PWF_LOOP (1<<1) // Loop movement (used with PWR_WRAP or PWR_COMEBACK)
|
||||||
PWF_LOOP = 1<<1, // Loop movement (used with PWR_WRAP or PWR_COMEBACK)
|
|
||||||
} polywaypointflags_e;
|
|
||||||
|
|
||||||
struct polywaypointdata_t
|
struct polywaypointdata_t
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue