blob: 1ac3e644cec8019744793e9adb01970b6e1556f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "TileBehaviorStrategy.h"
class RedTileBehavior : public TileBehaviorStrategy {
public:
virtual void step(Artist &);
virtual void update(Tile &);
virtual std::unique_ptr<TileBehaviorStrategy> clone(Museum &);
static constexpr const char * type = "R";
private:
using TileBehaviorStrategy::TileBehaviorStrategy;
static RedTileBehavior instance;
RedTileBehavior() = default;
};
|