mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-25 19:43:22 +00:00
Fix bitflags enum precipeffect_t for C++
This commit is contained in:
parent
1367261b8a
commit
cb4ae5b942
1 changed files with 4 additions and 6 deletions
|
|
@ -96,12 +96,10 @@ typedef enum
|
|||
MAXPRECIP
|
||||
} preciptype_t;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
PRECIPFX_THUNDER = 1,
|
||||
PRECIPFX_LIGHTNING = 1<<1,
|
||||
PRECIPFX_WATERPARTICLES = 1<<2
|
||||
} precipeffect_t;
|
||||
typedef INT32 precipeffect_t;
|
||||
#define PRECIPFX_THUNDER (1)
|
||||
#define PRECIPFX_LIGHTNING (1<<1)
|
||||
#define PRECIPFX_WATERPARTICLES (1<<2)
|
||||
|
||||
struct precipprops_t
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue