mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
bba513c525
I remember there being a reason why I included MxOmniCreateParambase in ISLE, but testing now it doesn't seem to be what I thought (or maybe other factors are influencing it now). Indeed it seems this is unnecessary now.
12 lines
215 B
C++
12 lines
215 B
C++
#ifndef MXOMNICREATEPARAMBASE_H
|
|
#define MXOMNICREATEPARAMBASE_H
|
|
|
|
// FIXME: Clearly not its real name
|
|
class MxOmniCreateParamBase
|
|
{
|
|
public:
|
|
virtual ~MxOmniCreateParamBase(){}
|
|
|
|
};
|
|
|
|
#endif // MXOMNICREATEPARAMBASE_H
|