mirror of https://github.com/PrimeDecomp/prime.git
12 lines
166 B
C++
12 lines
166 B
C++
|
#ifndef __CAABOX_HPP__
|
||
|
#define __CAABOX_HPP__
|
||
|
|
||
|
#include "Kyoto/Math/CVector3f.hpp"
|
||
|
|
||
|
class CAABox {
|
||
|
CVector3f min;
|
||
|
CVector3f max;
|
||
|
};
|
||
|
|
||
|
#endif // __CAABOX_HPP__
|