mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-06-08 20:30:02 -04:00
a13fdc136b
Co-authored-by: Skyth (Asilkan) <19259897+blueskythlikesclouds@users.noreply.github.com>
18 lines
431 B
C++
18 lines
431 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
|
|
namespace SWA
|
|
{
|
|
class CMatrixNodeTransform : public Hedgehog::Mirage::CMatrixNode
|
|
{
|
|
public:
|
|
Hedgehog::Mirage::CTransform m_Transform;
|
|
Hedgehog::Math::CMatrix m_WorldMatrix;
|
|
};
|
|
|
|
SWA_ASSERT_OFFSETOF(CMatrixNodeTransform, m_Transform, 0x60);
|
|
SWA_ASSERT_OFFSETOF(CMatrixNodeTransform, m_WorldMatrix, 0xC0);
|
|
SWA_ASSERT_SIZEOF(CMatrixNodeTransform, 0x100);
|
|
}
|