summary refs log tree commit diff
path: root/src/Math
diff options
context:
space:
mode:
Diffstat (limited to 'src/Math')
-rw-r--r--src/Math/AABB.hpp10
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;
+};
+
+}