mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 21:19:53 +00:00
10 lines
278 B
C
10 lines
278 B
C
#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
|