diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:48:14 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:48:14 +0200 |
commit | d8289105193707daede1a5b59137f18e20f20aeb (patch) | |
tree | 939908b9c4c6f7aaef8aa61ee2e04be3e85610b6 /DeleteArtistTileBehavior.h | |
parent | 76e61d68bbf568ec0d7fc4632e52d4de5496b003 (diff) |
(2/2) rename
Diffstat (limited to 'DeleteArtistTileBehavior.h')
-rw-r--r-- | DeleteArtistTileBehavior.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/DeleteArtistTileBehavior.h b/DeleteArtistTileBehavior.h new file mode 100644 index 0000000..0b2b0d4 --- /dev/null +++ b/DeleteArtistTileBehavior.h @@ -0,0 +1,19 @@ +#pragma once + +#include "TileBehavior.h" + +class DeleteArtistTileBehavior : public TileBehavior { +public: + virtual void step(Artist *); + virtual void update(Tile &); + virtual std::unique_ptr<TileBehavior> clone(Museum &); + + static constexpr const char * type = "R"; + +private: + using TileBehavior::TileBehavior; + static DeleteArtistTileBehavior instance; + DeleteArtistTileBehavior() = default; +}; + + |