mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-06-03 06:15:33 -05:00
23 lines
435 B
C
23 lines
435 B
C
#ifndef POKEPLATINUM_POKEMON_SUBSTRUCT_3_H
|
|
#define POKEPLATINUM_POKEMON_SUBSTRUCT_3_H
|
|
|
|
typedef struct PokemonSubstruct3_t {
|
|
u16 unk_00[8];
|
|
u8 unk_10;
|
|
u8 unk_11;
|
|
u8 unk_12;
|
|
u8 unk_13;
|
|
u8 unk_14;
|
|
u8 unk_15;
|
|
u16 unk_16;
|
|
u16 unk_18;
|
|
u8 unk_1A;
|
|
u8 unk_1B;
|
|
u8 unk_1C_0 : 7;
|
|
u8 unk_1C_7 : 1;
|
|
u8 unk_1D;
|
|
u16 unk_1E;
|
|
} PokemonSubstruct3;
|
|
|
|
#endif // POKEPLATINUM_POKEMON_SUBSTRUCT_3_H
|