diff options
Diffstat (limited to 'TileDecayCommand.cpp')
-rw-r--r-- | TileDecayCommand.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TileDecayCommand.cpp b/TileDecayCommand.cpp index e986cc5..ff5c6b2 100644 --- a/TileDecayCommand.cpp +++ b/TileDecayCommand.cpp @@ -1,7 +1,7 @@ -#include "TileDecayCommand.h" +#include "StepTileCommand.h" #include "Museum.h" -void TileDecayCommand::execute(unsigned int x, unsigned int y) { +void StepTileCommand::execute(unsigned int x, unsigned int y) { Museum & museum = this->get_museum(); if (x >= museum.canvas.data.columns) return; if (y >= museum.canvas.data.rows) return; |