diff options
author | yenatch <yenatch@gmail.com> | 2017-05-21 00:54:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-21 00:54:20 -0400 |
commit | 1c49064780f87a874c8f516ef20be61b17bafef0 (patch) | |
tree | 39d88024b6c278f8c4182ee869db6316c71bd8bd /include/decoration.h | |
parent | 9281b378095596896fce5be481fb40966226d955 (diff) | |
parent | ea181bea7652e6ea28705302ce7e85998e248986 (diff) |
Merge pull request #299 from PikalaxALT/master
Secret base and TV decompilation
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 |