diff options
author | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2021-12-14 23:26:56 -0500 |
---|---|---|
committer | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2021-12-14 23:26:56 -0500 |
commit | da8fcb2ac85554bb099dff69f1d0ec1226156afd (patch) | |
tree | c508aa56c680a67d88fe0458f14c66ddec372be3 /src/dungeon_ai_items.c | |
parent | b458476078a75905b2cd081455ce18b51d571c79 (diff) |
Decomped CanSee()
Diffstat (limited to 'src/dungeon_ai_items.c')
-rw-r--r-- | src/dungeon_ai_items.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dungeon_ai_items.c b/src/dungeon_ai_items.c index 94afb70..18bcf42 100644 --- a/src/dungeon_ai_items.c +++ b/src/dungeon_ai_items.c @@ -15,6 +15,7 @@ #include "dungeon_random.h" #include "dungeon_random_1.h" #include "dungeon_util.h" +#include "dungeon_visibility.h" #include "item.h" #include "team_inventory.h" @@ -33,7 +34,6 @@ extern struct MapTile* GetMapTileAtPosition(s16, s16); extern u32 EvaluateItem(struct DungeonEntity*, struct ItemSlot*, u8); extern bool8 ToolboxEnabled(struct DungeonEntityData*); extern void sub_8077274(struct DungeonEntity *, struct DungeonEntity *); -extern bool8 CanSee(struct DungeonEntity*, struct DungeonEntity*); extern void TargetThrownItem(struct DungeonEntity*, struct DungeonEntity*, struct ItemSlot*, u8, bool8); extern s32 gNumPotentialTargets; |