Fix bitflags enum precipeffect_t for C++

This commit is contained in:
Eidolon 2026-03-31 19:51:48 -05:00
parent 1367261b8a
commit cb4ae5b942

View file

@ -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
{ {