mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-27 04:35:39 -05:00
12 lines
256 B
C
12 lines
256 B
C
#ifndef POKEPLATINUM_STRUCT_DEF_CHATOT_CRY_H
|
|
#define POKEPLATINUM_STRUCT_DEF_CHATOT_CRY_H
|
|
|
|
#define CHATOT_CRY_SIZE 1000
|
|
|
|
typedef struct ChatotCry {
|
|
BOOL exists;
|
|
s8 data[CHATOT_CRY_SIZE];
|
|
} ChatotCry;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_DEF_CHATOT_CRY_H
|