From 951b01114ab85800db8ed7f4a1034e2bd303e712 Mon Sep 17 00:00:00 2001 From: AnonymousRandomPerson Date: Wed, 9 Mar 2022 21:50:15 -0500 Subject: Decomped IsMoveIndexUsable --- include/move_util.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 include/move_util.h (limited to 'include/move_util.h') diff --git a/include/move_util.h b/include/move_util.h new file mode 100644 index 0000000..d4deda3 --- /dev/null +++ b/include/move_util.h @@ -0,0 +1,8 @@ +#ifndef GUARD_MOVE_UTIL_H +#define GUARD_MOVE_UTIL_H + +#include "dungeon_entity.h" + +bool8 IsMoveIndexUsable(struct DungeonEntity *pokemon, s32 moveIndex, bool8 hasPPChecker); + +#endif -- cgit v1.2.3 From 458001dbbdb9c11a129cfe4286b536cfefc349f0 Mon Sep 17 00:00:00 2001 From: AnonymousRandomPerson Date: Wed, 9 Mar 2022 22:19:20 -0500 Subject: Decomped IsMoveUsable() --- include/move_util.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/move_util.h') diff --git a/include/move_util.h b/include/move_util.h index d4deda3..2bfc1c6 100644 --- a/include/move_util.h +++ b/include/move_util.h @@ -4,5 +4,6 @@ #include "dungeon_entity.h" bool8 IsMoveIndexUsable(struct DungeonEntity *pokemon, s32 moveIndex, bool8 hasPPChecker); +bool8 IsMoveUsable(struct DungeonEntity *pokemon, struct PokemonMove *move, bool8 hasPPChecker); #endif -- cgit v1.2.3