Files
BadQuanta 81ecc87d39 Progress.
2026-05-13 19:49:14 +00:00

11 lines
254 B
C++

#pragma once
/// @file AABB.hpp
/// For complete documentation, see src/AABB.cpp
namespace hdk::grid {
template <int N>
class AABB {
/// @todo Implement Axis Aligned Bounding Box virtual interface class or remove this file if not needed
};
};