isle-portable/LEGO1/omni/include/mxdsparallelaction.h
Nathan M Gilbert b25239f22d
Finish some missing methods (#448)
* Finish some missing methods

* Minor style updates/fixes

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
2024-01-17 18:08:48 +01:00

40 lines
1.1 KiB
C++

#ifndef MXDSPARALLELACTION_H
#define MXDSPARALLELACTION_H
#include "mxdsmultiaction.h"
// VTABLE: LEGO1 0x100dcf80
// SIZE 0x9c
class MxDSParallelAction : public MxDSMultiAction {
public:
MxDSParallelAction();
virtual ~MxDSParallelAction() override;
void CopyFrom(MxDSParallelAction& p_dsParallelAction);
MxDSParallelAction& operator=(MxDSParallelAction& p_dsParallelAction);
// FUNCTION: LEGO1 0x100caf00
inline virtual const char* ClassName() const override // vtable+0x0c
{
// STRING: LEGO1 0x10102608
return "MxDSParallelAction";
}
// FUNCTION: LEGO1 0x100caf10
inline virtual MxBool IsA(const char* p_name) const override // vtable+0x10
{
return !strcmp(p_name, MxDSParallelAction::ClassName()) || MxDSMultiAction::IsA(p_name);
}
// SYNTHETIC: LEGO1 0x100cb020
// MxDSParallelAction::`scalar deleting destructor'
virtual MxLong GetDuration() override; // vtable+24;
// FUNCTION: LEGO1 0x100caef0
virtual void SetDuration(MxLong p_duration) override { m_duration = p_duration; } // vtable+0x28
virtual MxDSAction* Clone() override; // vtable+2c;
};
#endif // MXDSPARALLELACTION_H