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