mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-12 05:44:27 -05:00
13 lines
325 B
C
13 lines
325 B
C
#ifndef POKEHEARTGOLD_POKEDEX_UTIL_H
|
|
#define POKEHEARTGOLD_POKEDEX_UTIL_H
|
|
|
|
#include "pokedex.h"
|
|
#include "save.h"
|
|
|
|
BOOL Pokedex_IsNatDexEnabled(const POKEDEX* pokedex);
|
|
BOOL SavArray_IsNatDexEnabled(SAVEDATA* savedata);
|
|
u32 Pokedex_ConvertToCurrentDexNo(BOOL natDexFlag, u32 species);
|
|
|
|
#endif //POKEHEARTGOLD_POKEDEX_UTIL_H
|
|
|