mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-09 12:35:23 -05:00
15 lines
505 B
C
15 lines
505 B
C
#ifndef GUARD_TRAINER_TOWER_H
|
|
#define GUARD_TRAINER_TOWER_H
|
|
|
|
void PrintTrainerTowerRecords(void);
|
|
void InitTrainerTowerBattleStruct(void);
|
|
void FreeTrainerTowerBattleStruct(void);
|
|
u8 GetTrainerTowerTrainerFrontSpriteId(void);
|
|
void ResetTrainerTowerResults(void);
|
|
void GetTrainerTowerOpponentWinText(u8 *dest, u8 opponentIdx);
|
|
void GetTrainerTowerOpponentLoseText(u8 *dest, u8 opponentIdx);
|
|
void GetTrainerTowerOpponentName(u8 *text);
|
|
u8 GetTrainerTowerOpponentClass(void);
|
|
|
|
#endif //GUARD_TRAINER_TOWER_H
|