diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/bag.h | 4 | ||||
-rw-r--r-- | include/item_menu.h | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/bag.h b/include/bag.h new file mode 100644 index 000000000..fe29149e9 --- /dev/null +++ b/include/bag.h @@ -0,0 +1,4 @@ +#ifndef GUARD_BAG_H +#define GUARD_BAG_H + +#endif //GUARD_BAG_H diff --git a/include/item_menu.h b/include/item_menu.h index 9ebe3918a..efd0066ed 100644 --- a/include/item_menu.h +++ b/include/item_menu.h @@ -7,6 +7,18 @@ // Exported RAM declarations +struct BagStruct +{ + void (*bagCallback)(void); + u8 location; + u8 pocket; + u16 unk6; + u8 cursorPosition[6]; + u8 scrollPosition[6]; +}; + +extern struct BagStruct gUnknown_203ACFC; + extern u16 gSpecialVar_ItemId; // Exported ROM declarations |