11 lines
254 B
C++
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
|
|
};
|
|
}; |