lego: add MxDSType enum, add it to all ctors, refactor MxDSObject (#73)

* lego: add MxDSType enum, add to all ctors

* refactor header

* re-type members

* add size assert for MxDSObject

* fix Parse param

* fix types
This commit is contained in:
Christian Semmler
2023-07-03 19:24:51 +02:00
committed by GitHub
parent d64a04705c
commit e0e338ee44
15 changed files with 78 additions and 52 deletions

20
LEGO1/mxdstypes.h Executable file
View File

@@ -0,0 +1,20 @@
#ifndef MXDSTYPES_H
#define MXDSTYPES_H
enum MxDSType
{
MxDSType_Object = 0,
MxDSType_Action = 1,
MxDSType_MediaAction = 2,
MxDSType_Anim = 3,
MxDSType_Sound = 4,
MxDSType_MultiAction = 5,
MxDSType_SerialAction = 6,
MxDSType_ParallelAction = 7,
MxDSType_Event = 8,
MxDSType_SelectAction = 9,
MxDSType_Still = 10,
MxDSType_ObjectAction = 11,
};
#endif // MXDSTYPES_H