mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-18 21:17:40 -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>
23 lines
627 B
C
23 lines
627 B
C
#ifndef POKEPLATINUM_STRUCT_0203DA00_H
|
|
#define POKEPLATINUM_STRUCT_0203DA00_H
|
|
|
|
#include "trainer_info.h"
|
|
#include "struct_defs/struct_020279FC.h"
|
|
#include "struct_decls/struct_02029C68_decl.h"
|
|
#include "struct_decls/struct_02029D04_decl.h"
|
|
#include "struct_decls/struct_0202CD88_decl.h"
|
|
#include "pokemon.h"
|
|
|
|
typedef struct {
|
|
Pokemon * unk_00;
|
|
UnkStruct_02029C68 * unk_04;
|
|
const UnkStruct_02029D04 * unk_08;
|
|
const AnimationControlFlags * unk_0C;
|
|
UnkStruct_0202CD88 * unk_10;
|
|
const TrainerInfo * unk_14;
|
|
BOOL * unk_18;
|
|
BOOL unk_1C;
|
|
} UnkStruct_0203DA00;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_0203DA00_H
|