prime/include/Kyoto/Math/CAABox.hpp
Luke Street 361f2bb9ce Initial work on CActor.cpp
Former-commit-id: 44b17813bda4f45c89a67a9a4623b872a57cf84f
2022-08-12 21:26:54 -04:00

22 lines
297 B
C++

#ifndef __CAABOX_HPP__
#define __CAABOX_HPP__
#include "Kyoto/Math/CVector3f.hpp"
class CAABox {
public:
CAABox() {
// TODO
}
static CAABox mskInvertedBox;
static CAABox mskNullBox;
private:
CVector3f min;
CVector3f max;
};
CHECK_SIZEOF(CAABox, 0x18)
#endif // __CAABOX_HPP__