Progress.

This commit is contained in:
BadQuanta
2026-05-13 19:49:14 +00:00
parent ba85c37f88
commit 81ecc87d39
16 changed files with 1212 additions and 134 deletions
+11
View File
@@ -0,0 +1,11 @@
#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
};
};