mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-04 18:51:09 -06:00
20 lines
292 B
C++
20 lines
292 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
|
|
namespace Hedgehog::Math
|
|
{
|
|
class CAabb // Eigen::AlignedBox3f
|
|
{
|
|
public:
|
|
Hedgehog::Math::CVector min;
|
|
Hedgehog::Math::CVector max;
|
|
|
|
CVector Center() const;
|
|
};
|
|
|
|
SWA_ASSERT_SIZEOF(CAabb, 0x18);
|
|
}
|
|
|
|
#include "Aabb.inl"
|