mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 15:07:47 -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>
35 lines
650 B
C
35 lines
650 B
C
#ifndef POKEPLATINUM_STRUCT_020831B4_H
|
|
#define POKEPLATINUM_STRUCT_020831B4_H
|
|
|
|
#include "struct_decls/struct_02022550_decl.h"
|
|
#include "strbuf.h"
|
|
|
|
typedef struct {
|
|
Strbuf* unk_00;
|
|
u16 unk_04;
|
|
u16 unk_06;
|
|
u16 unk_08;
|
|
u16 unk_0A;
|
|
u16 unk_0C;
|
|
u16 unk_0E_0 : 12;
|
|
u16 unk_0E_12 : 1;
|
|
u16 unk_0E_13 : 2;
|
|
u16 unk_0E_15 : 1;
|
|
u8 unk_10;
|
|
u8 unk_11;
|
|
u16 unk_12;
|
|
s8 unk_14;
|
|
s8 unk_15;
|
|
s16 unk_16;
|
|
s16 unk_18;
|
|
s16 unk_1A;
|
|
s16 unk_1C;
|
|
s16 unk_1E;
|
|
s16 unk_20;
|
|
GraphicElementData * unk_24;
|
|
u8 unk_28;
|
|
u8 unk_29;
|
|
} StrBufWrapper;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_020831B4_H
|