Skip to content

Commit

Permalink
Remove dead code.
Browse files Browse the repository at this point in the history
  • Loading branch information
przemek83 committed Sep 13, 2024
1 parent 5dd43f6 commit edfb5d0
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/Map.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,6 @@ class Map
std::size_t y_;
};

const std::unique_ptr<Tile>& getTile(Point point) const
{
return board_[static_cast<std::size_t>(point.y_)]
[static_cast<std::size_t>(point.x_)];
}

std::unique_ptr<Tile>& getTile(Point point)
{
return board_[static_cast<std::size_t>(point.y_)]
Expand Down

0 comments on commit edfb5d0

Please sign in to comment.