mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 21:19:53 +00:00
11 lines
268 B
C
11 lines
268 B
C
#ifndef GUARD_CHARGE_MOVE_H
|
|
#define GUARD_CHARGE_MOVE_H
|
|
|
|
#include "structs/dungeon_entity.h"
|
|
|
|
bool8 MoveMatchesChargingStatus(Entity *pokemon, Move *move);
|
|
// checkCharge = Check for the move named Charge.
|
|
bool8 IsCharging(Entity *pokemon, bool8 checkCharge);
|
|
|
|
#endif
|