mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-03-21 18:04:50 -05:00
20 lines
584 B
C
20 lines
584 B
C
#ifndef GUARD_CHOOSEBOXMON_H
|
|
#define GUARD_CHOOSEBOXMON_H
|
|
|
|
struct MoveLearnUI {
|
|
void (*askConfirmation)(void);
|
|
s32 (*waitConfirmation)(void);
|
|
void (*printMessage)(const u8 *message);
|
|
void (*playFanfare)(u32 songId);
|
|
void (*showMoveList)(u8 taskId);
|
|
void (*endTask)(u8 taskId);
|
|
};
|
|
|
|
u32 IsBoxMonExcluded(struct BoxPokemon *boxmon);
|
|
bool32 CanBoxMonBeSelected(struct BoxPokemon *boxmon);
|
|
s32 LearnMove(const struct MoveLearnUI *ui, u8 taskId);
|
|
s32 GetLearnMoveStartState(void);
|
|
s32 GetLearnMoveResumeAfterSummaryScreenState(void);
|
|
|
|
#endif // GUARD_CHOOSEBOXMON_H
|