diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-10 03:20:02 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-06-10 03:20:02 -0400 |
commit | 10f798323e88e4cdf8fe881956dd5ad41121e1a3 (patch) | |
tree | 3871c3b6abb80424dc77870f1e1ad7ce38a3afe2 /include/decoration.h | |
parent | 16fd2ca3856668cd4e7cb5e94d3022ac5edce8a3 (diff) | |
parent | fe13cf593a7c14480de940e413177586cc8eae2e (diff) |
finish decompiling player_pc.c
Diffstat (limited to 'include/decoration.h')
-rw-r--r-- | include/decoration.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/include/decoration.h b/include/decoration.h index 4bad93d1f..d041a8007 100644 --- a/include/decoration.h +++ b/include/decoration.h @@ -3,14 +3,17 @@ struct Decoration { - u8 id; - u8 name[16]; - u8 decor_field_11; - u8 decor_field_12; - u8 decor_field_13; - u16 price; - u8 *description; - void *tiles; + /*0x00*/ u8 id; + /*0x01*/ u8 name[16]; + /*0x11*/ u8 decor_field_11; + /*0x12*/ u8 decor_field_12; + /*0x13*/ u8 decor_field_13; + /*0x14*/ u16 price; + /*0x18*/ u8 *description; + /*0x1c*/ u16 *tiles; }; +extern struct Decoration gDecorations[0x77]; +extern void sub_80FF394(u16 unkr0, u16 unkr1, u16 unkr2); + #endif // GUARD_DECORATION_H |