diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-29 17:56:48 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-29 17:56:48 -0400 |
commit | 3766c45c62eeca442e9ab700c09c547f08615b62 (patch) | |
tree | 37e2c5c2c28f7a0c79eb39daa6276e018595be18 /include/inventory.hpp | |
parent | df12451f837854c816bed32ae0d962fba9601959 (diff) |
chests, item dropping
Diffstat (limited to 'include/inventory.hpp')
-rw-r--r-- | include/inventory.hpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/inventory.hpp b/include/inventory.hpp index a85e537..ca402b3 100644 --- a/include/inventory.hpp +++ b/include/inventory.hpp @@ -219,13 +219,16 @@ public: /*********************************************************************************** * OLD STUFF THAT NEEDS TO GET UPDATED * **********************************************************************************/ + +using InventorySlot = std::pair<Item *, unsigned int>; + class Inventory { private: unsigned int size; //how many slots our inventory has unsigned int sel; //what item is currently selected int os = 0; public: - std::vector<std::pair<Item*, uint>> Items; + std::vector<InventorySlot> Items; bool invOpen = false; //is the inventory open bool invOpening = false; //is the opening animation playing @@ -253,6 +256,8 @@ public: void setSelectionDown(); void draw(void); // Draws a text list of items in this inventory (should only be called for the player for now) + + const Item* getCurrentItem(void); }; void initInventorySprites(void); |