diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-23 16:09:47 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-23 16:09:47 +0200 |
commit | 277157b3e06b2deeacbdbc8bf6190de19f88169d (patch) | |
tree | db9c013b67f93d27fa5bb9cf84c7d6dc53f72734 /TileBehaviorFactory.h | |
parent | 64028952ceb17f97ded08f1ab7ec0b06c41e2b87 (diff) |
more refactoring / preparation for pathfinding
Diffstat (limited to 'TileBehaviorFactory.h')
-rw-r--r-- | TileBehaviorFactory.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/TileBehaviorFactory.h b/TileBehaviorFactory.h index 6167067..9a4b101 100644 --- a/TileBehaviorFactory.h +++ b/TileBehaviorFactory.h @@ -1,9 +1,10 @@ #pragma once #include <string> +#include <memory> -#include "Museum.h" -#include "TileBehavior.h" +class Museum; +class TileBehavior; class TileBehaviorFactory { public: |