home *** CD-ROM | disk | FTP | other *** search
- /* PedObject.hh */
-
- #pragma once
-
- #include "XObject.hh"
-
- // Because Metrowerks CodeWarrior is FUCKED, we can't use 'virtual' here.
- // Fortunately, we are clever enough not to require classes
- // that multiply inherit from more than one subclass of PedObject.
-
- class PedObject : /*virtual*/ public XObject {
- public:
- virtual long Message(long inMsgCode, void *inData) {return 0;}
- };
-