diff options
Diffstat (limited to 'SetPathfindingEndPointCommand.h')
| -rw-r--r-- | SetPathfindingEndPointCommand.h | 19 | 
1 files changed, 19 insertions, 0 deletions
| 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; +}; + |