pokeplatinum/include/struct_defs/pc_hall_of_fame_screen_def.h
Viperio ba11566b67
Some checks are pending
build / build (push) Waiting to run
Document PC hall of fame application (#709)
2025-09-04 08:07:55 -07:00

25 lines
578 B
C

#ifndef POKEPLATINUM_PC_HALL_OF_FAME_SCREEN_H
#define POKEPLATINUM_PC_HALL_OF_FAME_SCREEN_H
#include <nitro/rtc.h>
#include "constants/pokemon.h"
#include "hall_of_fame.h"
typedef enum PCHallOfFameTextState {
PC_HALL_OF_FAME_TEXT_GENERAL,
PC_HALL_OF_FAME_TEXT_MOVES,
} PCHallOfFameTextState;
typedef struct PCHallOfFameScreen {
int entryNum;
RTCDate date;
int pokemonCount;
int pokemonIndex;
PCHallOfFameTextState textState;
PCHallOfFamePokemon pokemon[MAX_PARTY_SIZE];
} PCHallOfFameScreen;
#endif // POKEPLATINUM_PC_HALL_OF_FAME_SCREEN_H