aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/entities.h')
-rw-r--r--include/entities.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/entities.h b/include/entities.h
index c2de1b1..403c3c5 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -113,9 +113,12 @@ public:
class Object : public Entity{
public:
Object(int);
+ Object(int, bool, char*);
void interact();
+ bool questObject = false;
+ char *pickupDialog;
private:
- int ID;
+ int identifier;
};
#endif // ENTITIES_H