diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-06-08 19:59:00 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-06-08 20:56:19 -0500 |
commit | c5bcb67bb871a445b20bbc0c226bc290dc5ba6bc (patch) | |
tree | 69245ce8d6204218292c0e0a30f58bf31673032e /include | |
parent | 4fa88f1a8fb21f4f6491446d8137853ed08825db (diff) |
Label decoration_inventory
Diffstat (limited to 'include')
-rw-r--r-- | include/decoration.h | 3 | ||||
-rw-r--r-- | include/decoration_inventory.h | 12 |
2 files changed, 7 insertions, 8 deletions
diff --git a/include/decoration.h b/include/decoration.h index a2e2bf8f8..7676c0add 100644 --- a/include/decoration.h +++ b/include/decoration.h @@ -152,9 +152,6 @@ extern const struct YesNoFuncTable gUnknown_083EC9CC; extern const struct YesNoFuncTable gUnknown_083EC9D4; extern const struct YesNoFuncTable gUnknown_083ECAA0; -extern u8 sub_8134194(u8); // src/decoration_inventory -extern bool8 sub_81341D4(void); // src/decoration_inventory -extern void sub_8134104(u8); // src/decoration_inventory extern void sub_8109DAC(u8); // src/trader extern void ReshowPlayerPC(u8); // src/player_pc void Task_SecretBasePC_Decoration(u8); diff --git a/include/decoration_inventory.h b/include/decoration_inventory.h index e2e31bee9..65bfcc8c0 100644 --- a/include/decoration_inventory.h +++ b/include/decoration_inventory.h @@ -2,12 +2,14 @@ #define GUARD_DECORATION_INVENTORY_H void ClearDecorationInventories(void); -s8 sub_8133F9C(u8); -u8 sub_8133FE4(u8); +s8 FindFreeDecorationInventorySlot(u8); +u8 InventoryContainsDecoration(u8); u8 GiveDecoration(u8); -u8 sub_8134074(u8); -s8 sub_81340A8(u8); -u8 sub_8134194(u8); +u8 CheckDecorationInventoryHasSpace(u8); +s8 RemoveDecorationFromInventory(u8); +void SortDecorationInventory(u8); +u8 GetNumDecorationsInInventoryCategory(u8); +bool8 GetNumDecorationsInInventory(void); #if DEBUG void Debug_GiveAllDecorations(void); #endif // DEBUG |