aboutsummaryrefslogtreecommitdiff
path: root/StepTileCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'StepTileCommand.h')
-rw-r--r--StepTileCommand.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/StepTileCommand.h b/StepTileCommand.h
new file mode 100644
index 0000000..ce9dccd
--- /dev/null
+++ b/StepTileCommand.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "Command.h"
+
+class StepTileCommand : public Command {
+ using Command::Command;
+
+public:
+ virtual void execute(unsigned int x, unsigned int y);
+};
+