diff options
author | Marcus Huderle <huderlem@gmail.com> | 2019-04-07 13:07:23 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-04-07 13:12:27 -0500 |
commit | 78151b6d88d22bec6b7d0d450e4ecc1f94491192 (patch) | |
tree | 30ff7d5580d1de634f42099b8c16a0b4e8a13dc1 /include | |
parent | c3cfd6065825ec8ddd5e1782998071518efaa322 (diff) |
Start decompiling pokemon_jump.c
Diffstat (limited to 'include')
-rw-r--r-- | include/constants/songs.h | 2 | ||||
-rwxr-xr-x | include/pokemon_jump.h | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/include/constants/songs.h b/include/constants/songs.h index 3778d5f08..b44c9f7a8 100644 --- a/include/constants/songs.h +++ b/include/constants/songs.h @@ -463,7 +463,7 @@ #define MUS_RG_SOUSA 535 // Starting Tutorial #define MUS_RG_SEKAIKAN 536 // Starting Tutorial 2 #define MUS_RG_SEIBETU 537 // Starting Tutorial 3 -#define MUS_RG_JUMP 538 // Jumping Minigame +#define MUS_RG_JUMP 538 // Pokemon Jump Minigame #define MUS_RG_UNION 539 // Union Room #define MUS_RG_NETWORK 540 // Network Center #define MUS_RG_OKURIMONO 541 // Mystery Gift diff --git a/include/pokemon_jump.h b/include/pokemon_jump.h new file mode 100755 index 000000000..95db6e404 --- /dev/null +++ b/include/pokemon_jump.h @@ -0,0 +1,10 @@ +#ifndef GUARD_POKEMON_JUMP_H +#define GUARD_POKEMON_JUMP_H + +#include "main.h" + +void sub_802A9A8(u16 monId, MainCallback callback); + +#endif // GUARD_POKEMON_JUMP_H + + |