FULLPIPE: Finish global_messageHandler3()

This commit is contained in:
Eugene Sandulenko 2013-08-26 22:17:20 +03:00
parent d8bc218ce8
commit 028772d153
12 changed files with 71 additions and 30 deletions

View file

@ -64,8 +64,16 @@ class MfcArchive : public Common::SeekableReadStream {
virtual bool seek(int32 offset, int whence = SEEK_SET) { return _stream->seek(offset, whence); }
};
enum ObjType {
kObjTypeDefault,
kObjTypeObjstateCommand
};
class CObject {
public:
ObjType _objtype;
CObject() : _objtype(kObjTypeDefault) {}
virtual bool load(MfcArchive &in) { return true; }
virtual ~CObject() {}