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>
22 lines
443 B
C
22 lines
443 B
C
#ifndef POKEPLATINUM_STRUCT_020997B8_H
|
|
#define POKEPLATINUM_STRUCT_020997B8_H
|
|
|
|
#include "trainer_info.h"
|
|
#include "struct_defs/struct_020279FC.h"
|
|
#include "pokemon.h"
|
|
|
|
typedef struct {
|
|
Pokemon * unk_00;
|
|
TrainerInfo * unk_04;
|
|
AnimationControlFlags * unk_08;
|
|
u16 * unk_0C;
|
|
u16 unk_10;
|
|
u16 unk_12;
|
|
u8 unk_14;
|
|
u8 unk_15;
|
|
u8 unk_16;
|
|
u8 unk_17;
|
|
} UnkStruct_020997B8;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_020997B8_H
|