aboutsummaryrefslogtreecommitdiff
path: root/DeleteArtistTileBehavior.h
blob: 94548646487bbe966eb1cad60fc9788e86ee7021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "TileBehavior.h"

class DeleteArtistTileBehavior : public TileBehavior {
	friend class TileBehaviorFactory;
	using TileBehavior::TileBehavior;

public:
	virtual void step(Artist *);
	virtual void update(Tile &);

	static constexpr const char * type = "R";
};