From 8cf389aaf748c77aecda0b3a3773c45053b0f231 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Fri, 25 Oct 2024 13:02:38 +0200 Subject: implement all ALGA features --- SetPathfindingEndPointCommand.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 SetPathfindingEndPointCommand.h (limited to 'SetPathfindingEndPointCommand.h') diff --git a/SetPathfindingEndPointCommand.h b/SetPathfindingEndPointCommand.h new file mode 100644 index 0000000..4bdc181 --- /dev/null +++ b/SetPathfindingEndPointCommand.h @@ -0,0 +1,19 @@ +#pragma once + +#include "Command.h" +#include "XY.h" + +class Museum; + +class SetPathfindingEndPointCommand : public Command { +public: + SetPathfindingEndPointCommand(Museum & m, const XY & point); + +public: + virtual void execute(); + +private: + Museum & museum; + XY point; +}; + -- cgit v1.2.3