mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-22 23:20:49 -05:00
29 lines
514 B
C
29 lines
514 B
C
#ifndef POKEPLATINUM_POKEMON_SUBSTRUCT_0_H
|
|
#define POKEPLATINUM_POKEMON_SUBSTRUCT_0_H
|
|
|
|
typedef struct PokemonSubstruct0_t {
|
|
u16 species;
|
|
u16 item;
|
|
u32 unk_04;
|
|
u32 unk_08;
|
|
u8 friendship;
|
|
u8 unk_0D;
|
|
u8 unk_0E;
|
|
u8 unk_0F;
|
|
u8 unk_10;
|
|
u8 unk_11;
|
|
u8 unk_12;
|
|
u8 unk_13;
|
|
u8 unk_14;
|
|
u8 unk_15;
|
|
u8 unk_16;
|
|
u8 unk_17;
|
|
u8 unk_18;
|
|
u8 unk_19;
|
|
u8 unk_1A;
|
|
u8 unk_1B;
|
|
u32 unk_1C;
|
|
} PokemonSubstruct0;
|
|
|
|
#endif // POKEPLATINUM_POKEMON_SUBSTRUCT_0_H
|