mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-09 18:43:45 +00:00
6 lines
110 B
C
6 lines
110 B
C
#ifndef MACROS_H
|
|
#define MACROS_H
|
|
|
|
#define CHECK_FLAG_ALL(flags, mask) (((flags) & (mask)) == (mask))
|
|
|
|
#endif
|