Add MxDSAnim, MxDSEvent, MxDSObjectAction, MxDSStill (#112)

* Add MxDSAnim

* Add MxDSEvent, MxDSObjectAction, MxDSStill
This commit is contained in:
Christian Semmler
2023-08-16 19:38:26 -04:00
committed by GitHub
parent 4a2226181c
commit 28f961b86d
8 changed files with 136 additions and 1 deletions

View File

@@ -11,6 +11,9 @@ public:
MxDSStill();
virtual ~MxDSStill() override;
void CopyFrom(MxDSStill &p_dsStill);
MxDSStill &operator=(MxDSStill &p_dsStill);
// OFFSET: LEGO1 0x100c9930
inline virtual const char *ClassName() const override // vtable+0x0c
{
@@ -23,6 +26,8 @@ public:
{
return !strcmp(name, MxDSStill::ClassName()) || MxDSMediaAction::IsA(name);
}
virtual MxDSAction *Clone(); // vtable+2c;
};
#endif // MXDSSTILL_H