mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 19:51:16 +00:00
Because of this, ISLE should no longer have to compile mxomnicreateparambase.obj. I didn't modify isle.mak, because I don't have the MSVC 4.20 GUI set-up.
15 lines
239 B
C++
15 lines
239 B
C++
#ifndef MXOMNICREATEPARAMBASE_H
|
|
#define MXOMNICREATEPARAMBASE_H
|
|
|
|
// FIXME: Clearly not its real name
|
|
class MxOmniCreateParamBase
|
|
{
|
|
public:
|
|
~MxOmniCreateParamBase() {
|
|
}
|
|
virtual void vtable00(){}
|
|
|
|
};
|
|
|
|
#endif // MXOMNICREATEPARAMBASE_H
|