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

#include "TileBehavior.h"

class NullTileBehavior : public TileBehavior {
public:
	virtual void update(Tile &);
	virtual std::unique_ptr<TileBehavior> clone(Museum &);

	static constexpr const char * type = "";

private:
	using TileBehavior::TileBehavior;
	static NullTileBehavior instance;
	NullTileBehavior() = default;
};