mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +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
|
MAXPRECIP
|
||||||
} preciptype_t;
|
} preciptype_t;
|
||||||
|
|
||||||
typedef enum
|
typedef INT32 precipeffect_t;
|
||||||
{
|
#define PRECIPFX_THUNDER (1)
|
||||||
PRECIPFX_THUNDER = 1,
|
#define PRECIPFX_LIGHTNING (1<<1)
|
||||||
PRECIPFX_LIGHTNING = 1<<1,
|
#define PRECIPFX_WATERPARTICLES (1<<2)
|
||||||
PRECIPFX_WATERPARTICLES = 1<<2
|
|
||||||
} precipeffect_t;
|
|
||||||
|
|
||||||
struct precipprops_t
|
struct precipprops_t
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue