diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-11-26 23:00:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-26 23:00:37 -0600 |
commit | 0793afb9e8eeb508375344ca683f97bbc797771a (patch) | |
tree | 1d0c1c802eea1fc5d29e86908b2de3b018d86e9b /include/learn_move.h | |
parent | 4e7e4cf467e6243994d19971d7cbee33c2f7bd25 (diff) | |
parent | 10704a135e3738b49d9175531d32bfde877f3b6b (diff) |
Merge pull request #478 from huderlem/pokemon_summary_screen
Decompile pokemon_summary_screen
Diffstat (limited to 'include/learn_move.h')
-rw-r--r-- | include/learn_move.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/learn_move.h b/include/learn_move.h index 85fbf046e..7a05ea60b 100644 --- a/include/learn_move.h +++ b/include/learn_move.h @@ -1,6 +1,21 @@ #ifndef GUARD_LEARN_MOVE_H #define GUARD_LEARN_MOVE_H +struct ContestMove +{ + u8 effect; + u8 contestCategory:3; + u8 comboStarterId; + u8 comboMoves[4]; +}; + +struct ContestEffect +{ + u8 effectType; + u8 appeal; + u8 jam; +}; + void sub_8132670(void); #endif // GUARD_LEARN_MOVE_H |