FULLPIPE: Added MctlCompound object type

This commit is contained in:
Eugene Sandulenko 2013-09-25 09:35:07 +03:00
parent 83b2507011
commit 036c9fd6a9
2 changed files with 4 additions and 1 deletions

View File

@ -71,6 +71,8 @@ class MctlCompound : public MotionController {
MctlCompoundArray _motionControllers;
public:
MctlCompound() { _objtype = kObjTypeMctlCompound; }
virtual bool load(MfcArchive &file);
virtual int addObject(StaticANIObject *obj);

View File

@ -69,7 +69,8 @@ enum ObjType {
kObjTypeObjstateCommand,
kObjTypeStaticANIObject,
kObjTypePictureObject,
kObjTypeMovGraph
kObjTypeMovGraph,
kObjTypeMctlCompound
};
class CObject {