diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-24 21:14:14 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-24 21:14:14 +0200 |
commit | da669db4f083194bc78358041c5d9929e103ac9f (patch) | |
tree | 3b1b27cac655cb7f852ff4d13233bc278f12ff0f /CyclePathfindingMethodCommand.h | |
parent | dabfb8188aab86ea8d8c9794ee8e46f6e22291f4 (diff) |
add more todos, shortcut keys and logging
Diffstat (limited to 'CyclePathfindingMethodCommand.h')
-rw-r--r-- | CyclePathfindingMethodCommand.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/CyclePathfindingMethodCommand.h b/CyclePathfindingMethodCommand.h new file mode 100644 index 0000000..6f7366d --- /dev/null +++ b/CyclePathfindingMethodCommand.h @@ -0,0 +1,17 @@ +#pragma once + +#include "Command.h" + +class Museum; + +class CyclePathfindingMethodCommand : public Command { +public: + CyclePathfindingMethodCommand(Museum & m); + +public: + virtual void execute(); + +private: + Museum & museum; +}; + |