summaryrefslogtreecommitdiff
path: root/inc/resource.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inc/resource.hpp')
-rw-r--r--inc/resource.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/inc/resource.hpp b/inc/resource.hpp
index 986a03d..2738f44 100644
--- a/inc/resource.hpp
+++ b/inc/resource.hpp
@@ -2,11 +2,16 @@
#define resource_h
#include "entity.hpp"
+#include "location.hpp"
class Resource: public Entity
{
public:
Resource(Window m, std::string s);
+ Location getLocation();
+
+ private:
+ int amount;
};
#endif