#pragma once #include "Vector.hpp" namespace Math { struct AABB { Vector<3> min, max; }; }