diff options
author | yenatch <yenatch@gmail.com> | 2017-07-05 19:39:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-05 19:39:43 -0400 |
commit | 550333dd91f134795d9d2bd4702ea92812e277f5 (patch) | |
tree | 05545e66bddf59fe4716e1f9f889c67cd9a25a31 /include/pokeblock.h | |
parent | eb778cac300608fbbed35f19123a6fb763cd85ce (diff) | |
parent | a62fbd6ec1d34ccba25e117e0db60fd4100bfd8d (diff) |
Merge pull request #349 from PikalaxALT/pokeblock
Pokeblock
Diffstat (limited to 'include/pokeblock.h')
-rwxr-xr-x | include/pokeblock.h | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/include/pokeblock.h b/include/pokeblock.h index b925894db..0d8e965e4 100755 --- a/include/pokeblock.h +++ b/include/pokeblock.h @@ -1,11 +1,35 @@ #ifndef GUARD_POKEBLOCK_H #define GUARD_POKEBLOCK_H +struct YesNoCBTable { + void (*yesFunc)(void); + void (*noFunc)(void); +}; + +enum { + PBLOCK_CLR_BLACK, + PBLOCK_CLR_RED, + PBLOCK_CLR_BLUE, + PBLOCK_CLR_PINK, + PBLOCK_CLR_GREEN, + PBLOCK_CLR_YELLOW +}; + +extern u8 ewram[]; +extern u8 gUnknown_02039244; +extern u8 gUnknown_02039248[4]; +extern u8 gUnknown_0203924C; +extern const u8 *gUnknown_03000758; + void sub_810B96C(void); +u8 sub_810BA50(s16, s16, u8); +u8 sub_810C9B0(struct Pokeblock *); +s16 sub_810CA9C(const struct Pokeblock *, u8); +u8 sub_810C9E8(struct Pokeblock *); void sub_810BA7C(u8); void ClearPokeblocks(void); -void sub_810CA6C(s32); +bool8 sub_810CA6C(u8); +s16 sub_810CAE4(u8, const struct Pokeblock *); u8 sub_810CB68(u8, u8*); -s16 sub_810CAE4(u8, struct Pokeblock *); #endif // GUARD_POKEBLOCK_H |