blob: 2bfc1c668c8b262e3e39850513ab2aa2d3fb9747 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef GUARD_MOVE_UTIL_H
#define GUARD_MOVE_UTIL_H
#include "dungeon_entity.h"
bool8 IsMoveIndexUsable(struct DungeonEntity *pokemon, s32 moveIndex, bool8 hasPPChecker);
bool8 IsMoveUsable(struct DungeonEntity *pokemon, struct PokemonMove *move, bool8 hasPPChecker);
#endif
|