aboutsummaryrefslogtreecommitdiff
path: root/frontend/Player.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/Player.h')
-rw-r--r--frontend/Player.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/Player.h b/frontend/Player.h
index 09e3a73..6d333f5 100644
--- a/frontend/Player.h
+++ b/frontend/Player.h
@@ -3,6 +3,7 @@
#include <unordered_map>
#include <string>
#include <memory>
+#include <vector>
#include "backend/WeaponObject.h"
#include "backend/ArmorObject.h"
@@ -29,6 +30,7 @@ private:
std::unique_ptr<ArmorObject> armor = nullptr;
Location & location;
bool cheating = false;
+ std::vector<std::unique_ptr<Object>> inventory = {};
public:
Player(Dungeon & dungeon);