diff options
Diffstat (limited to 'src/World/ChunkIndex.hpp')
| -rw-r--r-- | src/World/ChunkIndex.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/World/ChunkIndex.hpp b/src/World/ChunkIndex.hpp index bc61f3d..da23e3d 100644 --- a/src/World/ChunkIndex.hpp +++ b/src/World/ChunkIndex.hpp @@ -31,6 +31,14 @@ struct ChunkIndex { return {chunk_x, chunk_y}; } + static ChunkIndex from_position(Position::World pos) { + return from_position(pos.round_to_block()); + } + + Bool operator==(const ChunkIndex& other) const { + return x == other.x && y == other.y; + } + I32 x, y; }; |
