mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-07 10:03:18 +01:00
15 lines
256 B
C
15 lines
256 B
C
|
#ifndef GUARD_CONTEST_EFFECT_H
|
||
|
#define GUARD_CONTEST_EFFECT_H
|
||
|
|
||
|
struct ContestMove
|
||
|
{
|
||
|
u8 effect;
|
||
|
u8 contestCategory:3;
|
||
|
u8 comboStarterId;
|
||
|
u8 comboMoves[4];
|
||
|
};
|
||
|
|
||
|
extern const struct ContestMove gContestMoves[];
|
||
|
|
||
|
#endif //GUARD_CONTEST_EFFECT_H
|