diff options
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; +}; + |