aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities.cpp')
-rw-r--r--src/entities.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/entities.cpp b/src/entities.cpp
index e9e69ce..b418534 100644
--- a/src/entities.cpp
+++ b/src/entities.cpp
@@ -35,6 +35,10 @@ Player::Player(){
alive = true;
}
+void Player::interact(){
+
+}
+
NPC::NPC(){
width = HLINE * 8;
height = HLINE * 18;
@@ -45,6 +49,10 @@ NPC::NPC(){
canMove = true;
}
+void NPC::interact(){
+
+}
+
Structures::Structures(){
type = -1;
speed = 0;