mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-15 01:51:20 +00:00
22 lines
297 B
C++
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__
|