pmd-red/include/charge_move.h
2023-09-02 08:50:36 -04:00

11 lines
260 B
C

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