mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-05-20 05:28:08 -05:00
Some checks are pending
CI / build-emerald (push) Waiting to run
CI / build-firered (push) Waiting to run
CI / build-leafgreen (push) Waiting to run
CI / release (push) Waiting to run
CI / test (push) Waiting to run
CI / build (push) Blocked by required conditions
CI / docs_validate (push) Waiting to run
CI / allcontributors (push) Waiting to run
18 lines
613 B
C
18 lines
613 B
C
#ifndef GUARD_MOVE_RELEARNER_H
|
|
#define GUARD_MOVE_RELEARNER_H
|
|
|
|
#include "constants/move_relearner.h"
|
|
|
|
void TeachMoveRelearnerMove(void);
|
|
void MoveRelearnerShowHideHearts(s32 move);
|
|
void MoveRelearnerShowHideCategoryIcon(s32);
|
|
void CB2_InitLearnMove(void);
|
|
bool32 CanBoxMonRelearnAnyMove(struct BoxPokemon *boxMon);
|
|
bool32 CanBoxMonRelearnMoves(struct BoxPokemon *boxMon, enum MoveRelearnerStates state);
|
|
bool32 HasMoveToRelearn(struct BoxPokemon *boxMon, enum MoveRelearnerStates state);
|
|
|
|
extern enum MoveRelearnerStates gMoveRelearnerState;
|
|
extern enum RelearnMode gRelearnMode;
|
|
|
|
#endif //GUARD_MOVE_RELEARNER_H
|