blob: 4bdc1810f7bbf4dbef5d403eade6bdc4d3995691 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
};
|