diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-21 14:02:34 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-21 14:02:34 +0200 |
commit | fe8f7273f0efdfe319a0d3e3b2fc2847992745af (patch) | |
tree | 9f56560c8a35c3e281881fa48cd79b26f8e8de7e /StepTileBehavior.h | |
parent | 4cb7ca42003c177e3acc80075d7594e555966106 (diff) |
fix more design
Diffstat (limited to 'StepTileBehavior.h')
-rw-r--r-- | StepTileBehavior.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/StepTileBehavior.h b/StepTileBehavior.h index d044fe7..856760f 100644 --- a/StepTileBehavior.h +++ b/StepTileBehavior.h @@ -3,15 +3,12 @@ #include "TileBehavior.h" class StepTileBehavior : public TileBehavior { + friend class TileBehaviorFactory; + using TileBehavior::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; }; |