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

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

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