mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
4 lines
126 B
Plaintext
4 lines
126 B
Plaintext
#define BITFLAG(X) (1<<(X))
|
|
#define HAS_FLAG(flags, flag) (flags & flag)
|
|
#define NOT_FLAG(flags, flag) !HAS_FLAG(flags, flag)
|