mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-07-11 01:24:03 +02:00
a13fdc136b
Co-authored-by: Skyth (Asilkan) <19259897+blueskythlikesclouds@users.noreply.github.com>
17 lines
244 B
C++
17 lines
244 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
|
|
namespace Hedgehog::Mirage
|
|
{
|
|
class CMatrixNodeListener;
|
|
|
|
class CMatrixNode : public Base::CObject
|
|
{
|
|
public:
|
|
SWA_INSERT_PADDING(0x60);
|
|
};
|
|
|
|
SWA_ASSERT_SIZEOF(CMatrixNode, 0x60);
|
|
}
|