blob: 4d680be9e85e9e0996d223cac1612e9c36fcb458 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
|