aboutsummaryrefslogtreecommitdiff
path: root/StepTileBehavior.cpp
blob: ff1217e3b3d289dcfd876eb4d5c1a46e739d4bc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "StepTileBehavior.h"
#include "DeleteArtistTileBehavior.h"
#include "Tile.h"

using namespace std;

void StepTileBehavior::update(Tile & tile) {
	if (this->interactions < 3) return; 
	tile.set_type(DeleteArtistTileBehavior::type);
}