pmd-red/include/charge_move.h
2024-11-15 22:43:04 -05:00

11 lines
283 B
C

#ifndef GUARD_CHARGE_MOVE_H
#define GUARD_CHARGE_MOVE_H
#include "structs/dungeon_entity.h"
bool8 MoveMatchesBideClassStatus(Entity *pokemon, Move *move);
// checkCharge = Check for the move named Charge.
bool8 IsChargingAnyTwoTurnMove(Entity *pokemon, bool8 checkCharge);
#endif