Move ctor

This commit is contained in:
Christian Semmler 2024-02-01 16:54:41 -05:00
parent e3b1cb6341
commit 7acefb570e

View File

@ -56,6 +56,14 @@ class LegoState : public MxCore {
m_unk0x08 = 0; m_unk0x08 = 0;
} }
Shuffle(MxU32* p_objectIds, MxU16 p_length)
{
m_objectIds = p_objectIds;
m_length = p_length;
m_unk0x06 = 0;
m_unk0x08 = 0;
}
// FUNCTION: LEGO1 0x10071800 // FUNCTION: LEGO1 0x10071800
Shuffle& operator=(const Shuffle& p_shuffle) Shuffle& operator=(const Shuffle& p_shuffle)
{ {
@ -66,14 +74,6 @@ class LegoState : public MxCore {
return *this; return *this;
} }
Shuffle(MxU32* p_objectIds, MxU16 p_length)
{
m_objectIds = p_objectIds;
m_length = p_length;
m_unk0x06 = 0;
m_unk0x08 = 0;
}
MxU32 FUN_10014d00(); MxU32 FUN_10014d00();
MxBool FUN_10014de0(MxU32 p_objectId); MxBool FUN_10014de0(MxU32 p_objectId);