aboutsummaryrefslogtreecommitdiff
path: root/TileBehaviorStrategy.cpp
blob: 9de896e4c3d459f9d70e3fd2aa43a2c65904c64c (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "TileBehaviorFactory.h"
#include "TileBehavior.h"

TileBehavior::TileBehavior(const std::string type) {
	TileBehaviorFactory::register_strategy(type, this);
}

void TileBehavior::step(Artist *) {
	this->interactions++;
}