blob: 7cf042c52ef1ca724cb1c25cb811bc068a349a32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: chunk_aabb.hh
// Description: Axis-aligned bounding box for chunk-domain coordinates
#ifndef SHARED_WORLD_CHUNK_AABB_HH
#define SHARED_WORLD_CHUNK_AABB_HH
#pragma once
#include "core/math/aabb.hh"
#include "shared/types.hh"
using ChunkAABB = math::AABB<chunk_pos::value_type>;
#endif
|