blob: ab551f16a85b84afae3bf92d790718560604673f (
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++;
}
|