diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-08-11 19:04:28 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-08-11 19:04:28 +0200 |
commit | 537ebd36ac47fc627c401882c9d79b094ff29a2d (patch) | |
tree | dcb9cce46d89bac051073178623d397f6f31aa59 /include/contest_effect.h | |
parent | 85ebd76cd03e1ee84f182585060b3a79b8653e85 (diff) | |
parent | 6ae395a6366ceefffe8f492911a4e517bdbbc7b2 (diff) |
Merge contests with master
Diffstat (limited to 'include/contest_effect.h')
-rw-r--r-- | include/contest_effect.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/contest_effect.h b/include/contest_effect.h new file mode 100644 index 000000000..3484ca5df --- /dev/null +++ b/include/contest_effect.h @@ -0,0 +1,22 @@ +#ifndef GUARD_CONTEST_EFFECT_H +#define GUARD_CONTEST_EFFECT_H + +struct ContestMove +{ + u8 effect; + u8 contestCategory:3; + u8 comboStarterId; + u8 comboMoves[4]; +}; + +struct ContestEffect +{ + u8 effectType; + u8 appeal; + u8 jam; +}; + +extern const struct ContestMove gContestMoves[]; +extern struct ContestEffect gContestEffects[]; + +#endif //GUARD_CONTEST_EFFECT_H |