aboutsummaryrefslogtreecommitdiff
path: root/SetPathfindingStartPointCommand.h
blob: f3ce6bf067c3841694a98d41b7df27a7a0634637 (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 SetPathfindingStartPointCommand : public Command {
public:
	SetPathfindingStartPointCommand(Museum & m, const XY & point);

public:
	virtual void execute();

private:
	Museum & museum;
	XY point;
};