diff options
author | Edouard Veyrier <veyrie_e@epita.fr> | 2018-03-28 19:20:20 +0200 |
---|---|---|
committer | Edouard Veyrier <veyrie_e@epita.fr> | 2018-03-28 19:20:20 +0200 |
commit | 75b07292c99bdae7efe539bbe797aa4c381c880e (patch) | |
tree | 2bbe85ce0b4bc3886f264f979909a33dd9d7d483 /include/learn_move.h | |
parent | 2ecbe252a29b9d58bfd2df82c01f94be7b69a7b0 (diff) |
Translate first functions of learn move
Diffstat (limited to 'include/learn_move.h')
-rw-r--r-- | include/learn_move.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/learn_move.h b/include/learn_move.h new file mode 100644 index 000000000..951cd6cb0 --- /dev/null +++ b/include/learn_move.h @@ -0,0 +1,36 @@ +#ifndef GUARD_LEAN_MOVE_H +#define GUARD_LEAN_MOVE_H + +struct LearnMoveStruct +{ + u8 state; + u8 filler1; + u8 unk2; + u8 spriteIDs[20]; + u8 filler17[1]; + u8 unk18; + u8 unk19; + u8 numMenuChoices; + u8 menuSelection; + u8 unk1C; + bool8 unk1D; + u8 unk1E; + u8 filler1F; + /*0x020*/ u16 movesToLearn[20]; + u8 filler48[0x52-0x48]; + u8 moveNames[6][0x19]; + u8 fillerE8[0x2C3-0xE8]; + bool8 unk2C3; + bool8 showContestInfo; + /*0x2C5*/ u8 partyMon; + u8 unk2C6; +}; + +struct LearnMoveStruct *gUnknown_0203BC34 = NULL; + +void sub_8160624(void); +void sub_8160638(void); + +const struct SpritePalette gUnknown_08402D88 = {gDexArrows_Pal, 5526}; + +#endif //GUARD_LEAN_MOVE_H |