diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-03-02 12:31:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 12:31:02 -0500 |
commit | 9803cb612e6ca383694527d01f05f33edcc777a2 (patch) | |
tree | 93c0482d280efdaaacaa4487aa6418ef235c7894 /include | |
parent | 0169a98c683d3eb803bc6bca5f5c3c5fe2b9ee5c (diff) | |
parent | 6191739a4d01c4a83c4df721eb05b4f86c747381 (diff) |
Merge pull request #280 from GriffinRichards/fix-signs
Label sign bg events
Diffstat (limited to 'include')
-rw-r--r-- | include/constants/event_bg.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/constants/event_bg.h b/include/constants/event_bg.h new file mode 100644 index 000000000..b106a74ef --- /dev/null +++ b/include/constants/event_bg.h @@ -0,0 +1,10 @@ +#ifndef GUARD_CONSTANTS_EVENT_BG_H +#define GUARD_CONSTANTS_EVENT_BG_H + +#define BG_EVENT_PLAYER_FACING_ANY 0 +#define BG_EVENT_PLAYER_FACING_NORTH 1 +#define BG_EVENT_PLAYER_FACING_SOUTH 2 +#define BG_EVENT_PLAYER_FACING_EAST 3 +#define BG_EVENT_PLAYER_FACING_WEST 4 + +#endif // GUARD_CONSTANTS_EVENT_BG_H |