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

#include "Command.h"

class TileDecayCommand : public Command {
	using Command::Command;

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