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