#include "TileBehaviorFactory.h" #include "TileBehavior.h" TileBehavior::TileBehavior(const std::string type) { TileBehaviorFactory::register_strategy(type, this); } void TileBehavior::step(Artist *) { this->interactions++; }