blob: 3a2d26f6e9202aee5c29f105a81a9f012093fb74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SHARED_CHUNK_AABB
#define SHARED_CHUNK_AABB 1
#pragma once
#include "core/math/aabb.hh"
#include "shared/types.hh"
namespace world
{
using ChunkAABB = math::AABB<chunk_pos::value_type>;
} // namespace world
#endif // SHARED_CHUNK_AABB
|