diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-10-23 14:40:22 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-10-23 14:40:22 +0200 |
commit | 356eb34e3213c95a7ce072bdfc860601dbf464fe (patch) | |
tree | 48ca2a6b5eb218535fe0bf3cb235ce100c26cf06 /include/decoration_inventory.h | |
parent | 5b05811dd944e51ce055ad5ddca570808457c7a0 (diff) |
undo revert
Diffstat (limited to 'include/decoration_inventory.h')
-rw-r--r-- | include/decoration_inventory.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/decoration_inventory.h b/include/decoration_inventory.h index 5ca345933..e1fec36ea 100644 --- a/include/decoration_inventory.h +++ b/include/decoration_inventory.h @@ -1,10 +1,20 @@ #ifndef GUARD_DECORATION_INVENTORY_H #define GUARD_DECORATION_INVENTORY_H +struct DecorationInventory { + u8 *items; + u8 size; +}; + +extern struct DecorationInventory gDecorationInventories[]; void ClearDecorationInventories(void); +s8 GetFirstEmptyDecorSlot(u8 idx); u8 CheckHasDecoration(u8); u8 DecorationAdd(u8); u8 DecorationCheckSpace(u8); s8 DecorationRemove(u8); +void CondenseDecorationCategoryN(u8); +u8 CountDecorationCategoryN(u8 idx); +u8 CountDecorations(void); #endif // GUARD_DECORATION_INVENTORY_H |