aboutsummaryrefslogtreecommitdiff
path: root/TileBehaviorStrategy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TileBehaviorStrategy.cpp')
-rw-r--r--TileBehaviorStrategy.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/TileBehaviorStrategy.cpp b/TileBehaviorStrategy.cpp
deleted file mode 100644
index 9de896e..0000000
--- a/TileBehaviorStrategy.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "TileBehaviorFactory.h"
-#include "TileBehavior.h"
-
-TileBehavior::TileBehavior(const std::string type) {
- TileBehaviorFactory::register_strategy(type, this);
-}
-
-void TileBehavior::step(Artist *) {
- this->interactions++;
-}
-