aboutsummaryrefslogtreecommitdiff
path: root/StepTileCommand.h
blob: ce9dccd7c7b3fe9ccb1b377c427e2b0caad82312 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "Command.h"

class StepTileCommand : public Command {
	using Command::Command;

public:
	virtual void execute(unsigned int x, unsigned int y);
};