diff options
author | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2022-01-25 23:17:27 -0500 |
---|---|---|
committer | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2022-01-25 23:17:27 -0500 |
commit | 42909d03330749e610900d5aa5765758cc05e533 (patch) | |
tree | 40b3c95a4ae41fc59c2770897351fd82dd6441f9 /src/dungeon_capabilities_1.c | |
parent | 154c44250512828d56f5431188a7907cd149ef10 (diff) |
Decomped GetCrossableTerrain()
Diffstat (limited to 'src/dungeon_capabilities_1.c')
-rw-r--r-- | src/dungeon_capabilities_1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dungeon_capabilities_1.c b/src/dungeon_capabilities_1.c index 7ad12d8..c4eb53e 100644 --- a/src/dungeon_capabilities_1.c +++ b/src/dungeon_capabilities_1.c @@ -9,13 +9,13 @@ #include "dungeon_capabilities.h" #include "dungeon_items.h" #include "dungeon_map_access.h" +#include "dungeon_movement.h" #include "dungeon_pokemon_attributes_1.h" #include "dungeon_util.h" #include "map.h" const u8 gDirectionBitMasks[] = {0x1, 0x2, 0x4, 0x8, 0x10, 0x20, 0x40, 0x80}; -extern u8 GetCrossableTerrain(s16); extern bool8 IsFixedDungeon(); static inline bool8 JoinLocationCannotUseItems(struct DungeonEntityData *pokemonData) |