From 3766c45c62eeca442e9ab700c09c547f08615b62 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 29 Jun 2016 17:56:48 -0400 Subject: chests, item dropping --- src/inventory.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/inventory.cpp') diff --git a/src/inventory.cpp b/src/inventory.cpp index ede5eeb..7e8c94e 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -727,3 +727,11 @@ bool Inventory::detectCollision(vec2 one, vec2 two) { (void)two; return false; } + +const Item* Inventory::getCurrentItem(void) +{ + if (Items.size() > 0) + return Items[sel].first; + else + return nullptr; +} -- cgit v1.2.3