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 b590c8d..fe316ad 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -110,9 +110,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