diff options
Diffstat (limited to 'src/map.h')
-rw-r--r-- | src/map.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -66,7 +66,7 @@ struct MetaTile final parentX(0), parentY(0), blockmask(0) {} - A_DELETE_COPY(MetaTile); + A_DELETE_COPY(MetaTile) // Pathfinding members int Fcost; /**< Estimation of total path cost */ @@ -88,7 +88,7 @@ class TileAnimation final ~TileAnimation(); - A_DELETE_COPY(TileAnimation); + A_DELETE_COPY(TileAnimation) bool update(const int ticks = 1); @@ -160,7 +160,7 @@ class Map final : public Properties, public ConfigListener Map(const int width, const int height, const int tileWidth, const int tileHeight); - A_DELETE_COPY(Map); + A_DELETE_COPY(Map) /** * Destructor. |