From bbdc924d409f74594bd8c8b0d4bf55d5e5f32209 Mon Sep 17 00:00:00 2001
From: drumsetmonkey <abelleisle@roadrunner.com>
Date: Mon, 21 Mar 2016 08:04:33 -0400
Subject: Created currency and new inventory

---
 include/inventory.h | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

(limited to 'include/inventory.h')

diff --git a/include/inventory.h b/include/inventory.h
index 69cf073..7369642 100644
--- a/include/inventory.h
+++ b/include/inventory.h
@@ -11,11 +11,11 @@
 class Item{
 public:
 	std::string name,type;
-	
+
 	float width;
 	float height;
 	int   maxStackSize;
-	
+
 	std::string texloc;
 	Texturec *tex;
 
@@ -45,16 +45,18 @@ public:
 
 	Inventory(unsigned int s);	// Creates an inventory of size 's'
 	~Inventory(void);			// Free's allocated memory
-	
+
 	int addItem(std::string name,uint count);
 	int takeItem(std::string name,uint count);
 	int hasItem(std::string name);
-	
+
 	int useItem(void);
 	bool detectCollision(vec2,vec2);
-	
+
 	void setSelection(unsigned int s);
-	
+	void setSelectionUp();
+	void setSelectionDown();
+
 	void draw(void);	// Draws a text list of items in this inventory (should only be called for the player for now)
 };
 
-- 
cgit v1.2.3