pokeplatinum/include/struct_defs/trainer_data.h
Rachel 632f43a4f8
Document enc_effects.c (#13)
Also documented the structs used by this file and the used member fields elsewhere.
2023-07-06 07:52:11 -07:00

20 lines
377 B
C

#ifndef POKEPLATINUM_TRAINER_DATA_H
#define POKEPLATINUM_TRAINER_DATA_H
#include "struct_defs/struct_02014A84.h"
typedef struct {
u8 unk_00;
u8 class;
u8 unk_02;
u8 unk_03;
u16 unk_04[4];
u32 unk_0C;
u32 unk_10;
u16 unk_14[8];
UnkStruct_02014A84 unk_24;
UnkStruct_02014A84 unk_2C;
} TrainerData;
#endif // POKEPLATINUM_TRAINER_DATA_H