Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/api/Hedgehog/Math/Aabb.h
2025-01-17 20:17:16 +00:00

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"