mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-17 00:38:42 -05:00
* improving readability also seemingly located the party healing function * readability * clean it up * Update pokemon.h * add function names Adds names to many unnamed functions for readability. Also adds names to a couple structs. * add function names * add struct names * more functions with human names * rename chatotcrydata * doxygen documentation * update box mon function ProcessBoxPokemonWithTrainerInfo is now UpdateBoxMonStatusAndTrainerInfo and all params are labeled * fixing formatting --------- Co-authored-by: Jack <schoenjack98@gmail.com>
37 lines
714 B
C
37 lines
714 B
C
#ifndef POKEPLATINUM_STRUCT_02098C44_H
|
|
#define POKEPLATINUM_STRUCT_02098C44_H
|
|
|
|
#include "struct_defs/struct_020279FC.h"
|
|
#include "struct_decls/struct_party_decl.h"
|
|
|
|
typedef struct {
|
|
Party * unk_00;
|
|
void * unk_04;
|
|
void * unk_08;
|
|
AnimationControlFlags * unk_0C;
|
|
void * unk_10;
|
|
void * unk_14;
|
|
void * unk_18;
|
|
void * unk_1C;
|
|
u8 unk_20;
|
|
u8 unk_21;
|
|
u8 unk_22;
|
|
u8 unk_23;
|
|
u16 unk_24;
|
|
u16 unk_26;
|
|
u8 unk_28;
|
|
u8 unk_29;
|
|
u8 unk_2A;
|
|
u8 unk_2B;
|
|
u8 unk_2C[6];
|
|
u8 unk_32_0 : 4;
|
|
u8 unk_32_4 : 4;
|
|
u8 unk_33;
|
|
int unk_34;
|
|
u16 unk_38;
|
|
u8 padding_3A[2];
|
|
int unk_3C;
|
|
} PartyManagementData;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_02098C44_H
|