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