diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-23 14:36:41 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-23 14:36:41 +0200 |
commit | 64028952ceb17f97ded08f1ab7ec0b06c41e2b87 (patch) | |
tree | f792377f93ff30a41a0c559c67aa874a022d4763 /Museum.h | |
parent | e522f2a36ee00a3e0890adb2c34bfc8431711265 (diff) |
add pathfinding start/end selection
Diffstat (limited to 'Museum.h')
-rw-r--r-- | Museum.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -3,11 +3,12 @@ #include <thread> #include <chrono> -using namespace std::chrono_literals; - #include "People.h" #include "Canvas.h" #include "CollisionContext.h" +#include "PathfindingContext.h" + +using namespace std::chrono_literals; class Museum { public: @@ -18,6 +19,7 @@ public: People people; Canvas canvas; CollisionContext collision; + PathfindingContext pathfinding; public: bool paused = true; |