diff options
author | camthesaxman <cameronghall@cox.net> | 2017-07-06 18:10:03 -0500 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-07-06 18:10:03 -0500 |
commit | 42562fd8dfe66b2469a4f2a71ac204b2a74ac84a (patch) | |
tree | 79c59604bfea6ba5b58ac836692668145fb56420 /include | |
parent | 8d82578d3a101b06f9d2ced31738021007c4e533 (diff) |
decompile sub_80A3118 - sub_80A317C
Diffstat (limited to 'include')
-rw-r--r-- | include/item.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/item.h b/include/item.h index 47af11940..f51ea3ae5 100644 --- a/include/item.h +++ b/include/item.h @@ -22,6 +22,14 @@ struct Item u8 secondaryId; }; +struct BagPocket +{ + struct ItemSlot *itemSlots; + u8 capacity; +}; + +extern struct BagPocket gBagPockets[5]; + void CopyItemName(u16 itemId, u8 *string); bool8 IsBagPocketNonEmpty(u8 pocket); bool8 CheckBagHasItem(u16 itemId, u16 count); |