diff options
author | GriffinR <25753467+GriffinRichards@users.noreply.github.com> | 2019-08-07 21:18:21 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-08-21 17:11:06 -0500 |
commit | a46f7952f9c820ab2e8bf633e2b2d2541a31cf01 (patch) | |
tree | c1debcecf403ac06393c2d301e79d9fcc41cced1 /include/constants/global.h | |
parent | a4d5624ad6ab4535c448df9302517a9c983418e3 (diff) |
Use DIR constants for createvobject
Also uses event object ids in LinkContestRoom1
Diffstat (limited to 'include/constants/global.h')
-rw-r--r-- | include/constants/global.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/constants/global.h b/include/constants/global.h index 1177f0444..a862ecad2 100644 --- a/include/constants/global.h +++ b/include/constants/global.h @@ -76,4 +76,14 @@ #define OPTIONS_BATTLE_STYLE_SHIFT 0 #define OPTIONS_BATTLE_STYLE_SET 1 +#define DIR_NONE 0 +#define DIR_SOUTH 1 +#define DIR_NORTH 2 +#define DIR_WEST 3 +#define DIR_EAST 4 +#define DIR_SOUTHWEST 5 +#define DIR_SOUTHEAST 6 +#define DIR_NORTHWEST 7 +#define DIR_NORTHEAST 8 + #endif // GUARD_CONSTANTS_GLOBAL_H |