aboutsummaryrefslogtreecommitdiffstats
path: root/include/entities.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/entities.h')
-rw-r--r--include/entities.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/entities.h b/include/entities.h
index 1abe886..7a97200 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -138,7 +138,7 @@ public:
virtual ~Entity(){}
};
-class Player : public Entity {
+class Player : public Entity{
public:
QuestHandler qh;
bool light = false;
@@ -147,7 +147,6 @@ public:
~Player();
void interact();
};
-
class NPC : public Entity{
public:
std::vector<int (*)(NPC *)>aiFunc;