diff options
author | Diegoisawesome <diego@domoreaweso.me> | 2017-10-12 02:06:19 -0500 |
---|---|---|
committer | Diegoisawesome <diego@domoreaweso.me> | 2017-10-12 02:06:19 -0500 |
commit | f1b6358047dff266db01545d4a5927047e6756df (patch) | |
tree | 3905d3988e4c47acc33bbd984002d9fb767ac8ab /include/decoration.h | |
parent | 8914645231c9301579ed39bdd9200ad50e5296d0 (diff) |
Port/decomp scrcmd
Diffstat (limited to 'include/decoration.h')
-rw-r--r-- | include/decoration.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/decoration.h b/include/decoration.h new file mode 100644 index 000000000..f54f952e4 --- /dev/null +++ b/include/decoration.h @@ -0,0 +1,18 @@ +#ifndef GUARD_DECORATION_H +#define GUARD_DECORATION_H + +struct Decoration +{ + /*0x00*/ u8 id; + /*0x01*/ u8 name[16]; + /*0x11*/ u8 permission; + /*0x12*/ u8 shape; + /*0x13*/ u8 category; + /*0x14*/ u16 price; + /*0x18*/ const u8 *description; + /*0x1c*/ const u16 *tiles; +}; + +extern const struct Decoration gDecorations[]; + +#endif // GUARD_DECORATION_H |