aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/cpp/Actor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/cpp/Actor.cpp')
-rw-r--r--src/main/cpp/Actor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/cpp/Actor.cpp b/src/main/cpp/Actor.cpp
index 219488d..a6dc597 100644
--- a/src/main/cpp/Actor.cpp
+++ b/src/main/cpp/Actor.cpp
@@ -1,7 +1,7 @@
#include "Actor.hpp"
-Actor::Actor(std::string _name, unsigned _maxHp, Type _type) :
- name(_name), maxHp(_maxHp), type(_type)
+Actor::Actor(std::string _name, unsigned _maxHp) :
+ name(_name), maxHp(_maxHp)
{}
Actor::~Actor()