From 0ea22237c933523f66d7468a953c5a5057b3a899 Mon Sep 17 00:00:00 2001 From: Cheng Hann Gan Date: Sat, 13 Nov 2021 19:59:20 -0500 Subject: Decomped DecideUseItem (#73) --- include/constants/direction.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include/constants') 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 -- cgit v1.2.3