summaryrefslogtreecommitdiff
path: root/include/pokedex.h
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2017-09-30 16:55:19 -0700
committerGitHub <noreply@github.com>2017-09-30 16:55:19 -0700
commit5fb9b9052276243d54ecfc27d0514e9c35825e8c (patch)
tree7546411871d12a05f370b529341ebfd656334af1 /include/pokedex.h
parentf74d4742f597a423b7a8685d72c06597c8c78db7 (diff)
parent37b891cbd49780d63fe2295add70bf003c59de48 (diff)
Merge pull request #437 from huderlem/name_labels
Name labels
Diffstat (limited to 'include/pokedex.h')
-rw-r--r--include/pokedex.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/pokedex.h b/include/pokedex.h
index 1bc63a4ff..c47494e1f 100644
--- a/include/pokedex.h
+++ b/include/pokedex.h
@@ -9,7 +9,17 @@ void CB2_InitPokedex(void);
u8 sub_809070C(u16 dexNum, u32 b, u32 c);
const u8 *GetPokemonCategory(u16);
u16 GetPokedexHeightWeight(u16 dexNum, u8 data);
-s8 GetNationalPokedexFlag(u16, u8);
+
+enum
+{
+ FLAG_GET_SEEN,
+ FLAG_GET_CAUGHT,
+ FLAG_SET_SEEN,
+ FLAG_SET_CAUGHT
+};
+
+s8 GetSetPokedexFlag(u16, u8);
+
u16 GetNationalPokedexCount(u8);
u16 GetHoennPokedexCount(u8);
bool8 sub_8090FC0(void);