diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:43:25 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:43:25 +0200 |
commit | 76e61d68bbf568ec0d7fc4632e52d4de5496b003 (patch) | |
tree | 92a2dc9b12a542456bdc154f44deb34925883210 /TileDecayCommand.cpp | |
parent | 3f63576819151ff15237a9b4f0651c538cfef067 (diff) |
(1/2) rename
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; |