aboutsummaryrefslogtreecommitdiff
path: root/GrayTileBehavior.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-13 17:43:36 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-13 17:43:36 +0200
commitfeaf272efad381414c6ee76c0cd4bf929e8087ae (patch)
treecbdf4ffc206eba701ce39871562a60e889a9ccab /GrayTileBehavior.h
parent4343c7cd36a19c03c4885dbf15aaa22fe51b4fe0 (diff)
WIP
Diffstat (limited to 'GrayTileBehavior.h')
-rw-r--r--GrayTileBehavior.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/GrayTileBehavior.h b/GrayTileBehavior.h
index 9ea4d96..ceba350 100644
--- a/GrayTileBehavior.h
+++ b/GrayTileBehavior.h
@@ -4,8 +4,8 @@
class GrayTileBehavior : public TileBehaviorStrategy {
public:
- virtual void run(Tile &);
- virtual std::unique_ptr<TileBehaviorStrategy> clone();
+ virtual void update(Tile &);
+ virtual std::unique_ptr<TileBehaviorStrategy> clone(Museum &);
private:
using TileBehaviorStrategy::TileBehaviorStrategy;