summaryrefslogtreecommitdiffstats
path: root/src/model/Entity.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/Entity.hpp')
-rw-r--r--src/model/Entity.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/model/Entity.hpp b/src/model/Entity.hpp
index 331cb4f..677eeb5 100644
--- a/src/model/Entity.hpp
+++ b/src/model/Entity.hpp
@@ -61,6 +61,10 @@ public:
void setDirection(Direction dir) {
direction = dir;
}
+
+ void interact(uint64_t time) {
+ std::fprintf(stderr, "Tried to interact with `%s' entity at %llu\n", name.c_str(), (unsigned long long)time);
+ }
};
}