diff options
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
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; +} |