summaryrefslogtreecommitdiff
path: root/include/dungeon_items.h
diff options
context:
space:
mode:
authorAnonymousRandomPerson <chenghanngan.us@gmail.com>2021-12-29 23:33:22 -0600
committerAnonymousRandomPerson <chenghanngan.us@gmail.com>2021-12-29 23:33:22 -0600
commita61f7ea2a1913df28ea4f3ecd71c57fa4e5bbf5c (patch)
treecaa6dacd9c2ac3cb94210e45eecd35af6c870747 /include/dungeon_items.h
parentedf909be4da55a435bf81f96ffcbd156b2120562 (diff)
Decomped HasItem()
Diffstat (limited to 'include/dungeon_items.h')
-rw-r--r--include/dungeon_items.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/dungeon_items.h b/include/dungeon_items.h
new file mode 100644
index 0000000..8eb1718
--- /dev/null
+++ b/include/dungeon_items.h
@@ -0,0 +1,9 @@
+#ifndef GUARD_DUNGEON_ITEMS_H
+#define GUARD_DUNGEON_ITEMS_H
+
+#include "dungeon_entity.h"
+
+// 0x46CB0
+bool8 HasItem(struct DungeonEntity *pokemon, u8 itemIndex);
+
+#endif