aboutsummaryrefslogtreecommitdiff
path: root/SetPathfindingStartPointCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'SetPathfindingStartPointCommand.h')
-rw-r--r--SetPathfindingStartPointCommand.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/SetPathfindingStartPointCommand.h b/SetPathfindingStartPointCommand.h
new file mode 100644
index 0000000..f3ce6bf
--- /dev/null
+++ b/SetPathfindingStartPointCommand.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "Command.h"
+#include "XY.h"
+
+class Museum;
+
+class SetPathfindingStartPointCommand : public Command {
+public:
+ SetPathfindingStartPointCommand(Museum & m, const XY & point);
+
+public:
+ virtual void execute();
+
+private:
+ Museum & museum;
+ XY point;
+};
+