prime/include/Kyoto/Math/CAABox.hpp

12 lines
166 B
C++
Raw Normal View History

2022-07-26 04:36:32 +00:00
#ifndef __CAABOX_HPP__
#define __CAABOX_HPP__
#include "Kyoto/Math/CVector3f.hpp"
class CAABox {
CVector3f min;
CVector3f max;
};
#endif // __CAABOX_HPP__