Skip to content

Commit

Permalink
Code format - (Clang-format)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 12, 2024
1 parent 046df5f commit b35fba1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/items/tile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ class DynamicTile : public Tile {
CreatureVector creatures;

public:
DynamicTile(const Position &position) : Tile(position.x, position.y, position.z) { }
DynamicTile(const Position &position) :
Tile(position.x, position.y, position.z) { }
DynamicTile(uint16_t x, uint16_t y, uint8_t z) :
Tile(x, y, z) { }

Expand Down Expand Up @@ -324,7 +325,8 @@ class StaticTile final : public Tile {
std::unique_ptr<CreatureVector> creatures;

public:
StaticTile(const Position &position) : Tile(position.x, position.y, position.z) { }
StaticTile(const Position &position) :
Tile(position.x, position.y, position.z) { }
StaticTile(uint16_t x, uint16_t y, uint8_t z) :
Tile(x, y, z) { }

Expand Down

0 comments on commit b35fba1

Please sign in to comment.