mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
33 lines
773 B
C
33 lines
773 B
C
#ifndef POKEPLATINUM_POKEDEX_SORT_DATA_H
|
|
#define POKEPLATINUM_POKEDEX_SORT_DATA_H
|
|
|
|
#include "applications/pokedex/sorted_pokedex.h"
|
|
|
|
#include "pokedex.h"
|
|
#include "pokedex_heightweight.h"
|
|
#include "string_gf.h"
|
|
|
|
typedef struct {
|
|
const Pokedex *pokedex;
|
|
SortedPokedex sortedPokedex;
|
|
int isNationalDex;
|
|
BOOL isNationalDexUnlocked;
|
|
int numEncountered;
|
|
int numCaught;
|
|
BOOL unk_1740;
|
|
int timeOfDay;
|
|
HeightWeightData *HWData;
|
|
u32 trainerGameCode;
|
|
u32 trainerGender;
|
|
String *trainerName;
|
|
int unk_1758;
|
|
u16 currentSpecies;
|
|
u16 bootMode;
|
|
BOOL fullmoonIslandVisible;
|
|
BOOL newmoonIslandVisible;
|
|
BOOL springPathVisible;
|
|
BOOL seabreakPathVisible;
|
|
} PokedexSortData;
|
|
|
|
#endif // POKEPLATINUM_POKEDEX_SORT_DATA_H
|