mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
12 lines
318 B
C
12 lines
318 B
C
#ifndef POKEPLATINUM_DEXMODE_CHECKER_H
|
|
#define POKEPLATINUM_DEXMODE_CHECKER_H
|
|
|
|
#include "pokedex.h"
|
|
#include "savedata.h"
|
|
|
|
u32 SaveData_GetDexMode(SaveData *saveData);
|
|
u32 IsNationalDexObtained(const Pokedex *dex);
|
|
u32 GetDexNumber(u32 isNationalDexObtained, u32 monSpecies);
|
|
|
|
#endif // POKEPLATINUM_DEXMODE_CHECKER_H
|