diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2022-03-21 17:48:40 -0700 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2022-03-21 17:48:40 -0700 |
commit | 57f540b320ae8439fe4b42c6149641b877c7ea73 (patch) | |
tree | d131e5351b684a671cb8b5c62a7e8ed925ca773e /include/global.h | |
parent | 46420815f4fd1f374ee48ee447bb42539e1a669c (diff) |
fix a few nonmatchings and code cleanup
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index 81388a8..5c71009 100644 --- a/include/global.h +++ b/include/global.h @@ -32,4 +32,9 @@ #define ARRAY_COUNT(array) (sizeof(array) / sizeof((array)[0])) +struct DungeonLocation { + u8 dungeonIndex; + u8 dungeonFloor; +}; + #endif // GUARD_GLOBAL_H |