pokeplatinum/include/struct_defs/struct_020831B4.h
Yako 5e58dfdca4
Documented part of PartyManagementData struct (#517)
* Begin documenting party screen healthbar

* really minor rename of unnamed parameter

* Big rename that will probably cause issues bc VSCode's rename is not ideal

* should match

* document part of PartyManagementData struct

* apparently I missed these
idk how it build without them

* swap include order

* begin documenting unk_02084B70.c

* clean up parameter names a bit

* some more instances of windowLayout

* continue documenting fields of PartyManagementData

* more progress on PartyManagementData

* Revert PartyMenu_MakeSelection to sub_02083370 and remove enum

* name all unnamed PartyManagementData variables partyMan
2025-05-26 11:07:32 -07:00

35 lines
607 B
C

#ifndef POKEPLATINUM_STRUCT_020831B4_H
#define POKEPLATINUM_STRUCT_020831B4_H
#include "sprite.h"
#include "strbuf.h"
typedef struct {
Strbuf *unk_00;
u16 unk_04;
u16 curHP;
u16 maxHP;
u16 level;
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;
Sprite *unk_24;
u8 unk_28;
u8 unk_29;
} StrBufWrapper;
#endif // POKEPLATINUM_STRUCT_020831B4_H