diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-24 08:26:14 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-24 08:26:14 +0200 |
| commit | cb2693700af90ebbd47d2026d69580b307008393 (patch) | |
| tree | ae86a08371a746e35374ab12d83856923f87c964 /src/chunk.hpp | |
| parent | 968905a4056d1ab7b13f15817a03f3e6dbb3fbea (diff) | |
now rename at_offset_() to at_offset()
Diffstat (limited to 'src/chunk.hpp')
| -rw-r--r-- | src/chunk.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp index cb5dca51..65730d42 100644 --- a/src/chunk.hpp +++ b/src/chunk.hpp @@ -34,8 +34,8 @@ public: tile_proto operator[](local_coords xy) const noexcept; chunk_coords_ coord() const noexcept; - Optional<tile_ref> at_offset_(local_coords pos, Vector2i off); - Optional<tile_ref> at_offset_(tile_ref r, Vector2i off); + Optional<tile_ref> at_offset(local_coords pos, Vector2i off); + Optional<tile_ref> at_offset(tile_ref r, Vector2i off); using iterator = tile_iterator; using const_iterator = tile_const_iterator; |
