From da669db4f083194bc78358041c5d9929e103ac9f Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Thu, 24 Oct 2024 21:14:14 +0200 Subject: add more todos, shortcut keys and logging --- CyclePathfindingMethodCommand.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CyclePathfindingMethodCommand.h (limited to 'CyclePathfindingMethodCommand.h') 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; +}; + -- cgit v1.2.3