mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 08:41:16 +00:00
MxDSAction copy constructor
This commit is contained in:
parent
51594bb94c
commit
99911a8119
@ -28,6 +28,7 @@ class MxDSAction : public MxDSObject {
|
||||
MxDSAction();
|
||||
~MxDSAction() override;
|
||||
|
||||
MxDSAction(MxDSAction& p_dsAction);
|
||||
void CopyFrom(MxDSAction& p_dsAction);
|
||||
MxDSAction& operator=(MxDSAction& p_dsAction);
|
||||
|
||||
|
||||
@ -112,6 +112,12 @@ void MxDSAction::CopyFrom(MxDSAction& p_dsAction)
|
||||
this->m_unk0x90 = p_dsAction.m_unk0x90;
|
||||
}
|
||||
|
||||
// FUNCTION: BETA10 0x1012b2b3
|
||||
MxDSAction::MxDSAction(MxDSAction& p_dsAction) : MxDSObject(p_dsAction)
|
||||
{
|
||||
this->CopyFrom(p_dsAction);
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100adbd0
|
||||
// FUNCTION: BETA10 0x1012b355
|
||||
undefined4 MxDSAction::VTable0x14()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user