pokeplatinum/include/battle/battle_message.h
2023-08-28 21:08:21 -07:00

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