diff options
Diffstat (limited to 'SetNeighborTileBehavior.h')
-rw-r--r-- | SetNeighborTileBehavior.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/SetNeighborTileBehavior.h b/SetNeighborTileBehavior.h new file mode 100644 index 0000000..d316420 --- /dev/null +++ b/SetNeighborTileBehavior.h @@ -0,0 +1,22 @@ +#pragma once + +#include "TileBehavior.h" + +class SetNeighborTileBehavior : public TileBehavior { +public: + virtual void step(Artist *); + virtual void update(Tile &); + virtual std::unique_ptr<TileBehavior> clone(Museum &); + + static constexpr const char * type = "B"; + +private: + using TileBehavior::TileBehavior; + static SetNeighborTileBehavior instance; + SetNeighborTileBehavior() = default; + +private: + int dx = 0; + int dy = 0; +}; + |