mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-30 14:15:12 -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>
25 lines
649 B
C
25 lines
649 B
C
#ifndef POKEPLATINUM_STRUCT_02093BBC_H
|
|
#define POKEPLATINUM_STRUCT_02093BBC_H
|
|
|
|
#include "trainer_info.h"
|
|
#include "struct_defs/struct_020279FC.h"
|
|
#include "struct_decls/struct_02029C88_decl.h"
|
|
#include "struct_decls/struct_02029D04_decl.h"
|
|
#include "pokemon.h"
|
|
#include "struct_defs/struct_02095C60.h"
|
|
|
|
typedef struct {
|
|
Pokemon * unk_00;
|
|
UnkStruct_02029C88 * unk_04;
|
|
int unk_08;
|
|
int unk_0C;
|
|
int unk_10;
|
|
int unk_14;
|
|
const UnkStruct_02029D04 * unk_18;
|
|
UnkStruct_02095C60 * unk_1C;
|
|
const AnimationControlFlags * unk_20;
|
|
const TrainerInfo * unk_24;
|
|
} UnkStruct_02093BBC;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_02093BBC_H
|