blob: 859845d5f05c241e73df32e0183282e18f7b7b52 (
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);
}
|