mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-22 01:17:20 -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
|