diff options
Diffstat (limited to 'include')
-rw-r--r--[-rwxr-xr-x] | include/graphics.h | 7 | ||||
-rw-r--r-- | include/item.h | 8 |
2 files changed, 14 insertions, 1 deletions
diff --git a/include/graphics.h b/include/graphics.h index 36b11fd0a..4d042b3b6 100755..100644 --- a/include/graphics.h +++ b/include/graphics.h @@ -2435,7 +2435,12 @@ extern const u8 gMonFrontPic_UnownQuestionMark[]; extern const u8 gMonBackPic_UnownQuestionMark[]; extern const u8 gMonIcon_UnownQuestionMark[]; -// src/pokeblock.c +// data/graphics.s +extern const u8 gBagScreen_Gfx[]; +extern const u8 gBagScreenMale_Pal[]; +extern const u8 gBagScreenFemale_Pal[]; +extern const u16 gUnknown_08E77004[]; + extern const u8 gMenuPokeblock_Gfx[]; extern const u8 gMenuPokeblock_Tilemap[]; extern const u8 gMenuPokeblock_Pal[]; 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); |