mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 15:07:47 -05:00
14 lines
263 B
C
14 lines
263 B
C
#ifndef POKEPLATINUM_BATTLE_MESSAGE_H
|
|
#define POKEPLATINUM_BATTLE_MESSAGE_H
|
|
|
|
typedef struct BattleMessage {
|
|
u8 commandCode;
|
|
u8 tags;
|
|
u16 id;
|
|
int params[6];
|
|
int digits;
|
|
int battler;
|
|
} BattleMessage;
|
|
|
|
#endif // POKEPLATINUM_BATTLE_MESSAGE_H
|