diff options
Diffstat (limited to 'src/Math/AABB.hpp')
| -rw-r--r-- | src/Math/AABB.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Math/AABB.hpp b/src/Math/AABB.hpp new file mode 100644 index 0000000..2c02abf --- /dev/null +++ b/src/Math/AABB.hpp @@ -0,0 +1,10 @@ +#pragma once +#include "Vector.hpp" + +namespace Math { + +struct AABB { + Vector<3> min, max; +}; + +} |
