mirror of
https://github.com/AxioDL/PrimeAPI.git
synced 2026-03-30 11:38:46 -07:00
11 lines
124 B
C++
11 lines
124 B
C++
#ifndef CAABOX_HPP
|
|
#define CAABOX_HPP
|
|
|
|
class CAABox
|
|
{
|
|
public:
|
|
CVector3f min;
|
|
CVector3f max;
|
|
};
|
|
|
|
#endif // CAABOX_HPP
|