diff options
author | Cheng Hann Gan <chenghanngan.us@gmail.com> | 2021-11-13 19:59:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-13 16:59:20 -0800 |
commit | 0ea22237c933523f66d7468a953c5a5057b3a899 (patch) | |
tree | 07290e57a9092e6c3e5d49bf28e37b20411cf04d /include/constants | |
parent | 561ea52847f5a88dc6a9a79dbfc5c40f421cace5 (diff) |
Decomped DecideUseItem (#73)
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/direction.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/constants/direction.h b/include/constants/direction.h index 5f2bfb3..7c5cec5 100644 --- a/include/constants/direction.h +++ b/include/constants/direction.h @@ -1,6 +1,8 @@ #ifndef GUARD_CONSTANTS_DIRECTION_H #define GUARD_CONSTANTS_DIRECTION_H +#define DIRECTION_MASK 7 + enum Direction { DIRECTION_SOUTH, @@ -10,7 +12,8 @@ enum Direction DIRECTION_NORTH, DIRECTION_NORTHWEST, DIRECTION_WEST, - DIRECTION_SOUTHWEST + DIRECTION_SOUTHWEST, + NUM_DIRECTIONS }; #endif |