mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
c47206617d
* Reorganize sources * Refactor * Remove relative paths * Renames * Fix gitignore * Remove stuff * Try fixing format script * Fix format * Fix format * Fix naming script * Test format * Fix format
9 lines
108 B
C++
9 lines
108 B
C++
#ifndef MXPARAM_H
|
|
#define MXPARAM_H
|
|
|
|
class MxParam {
|
|
public:
|
|
virtual ~MxParam() {}
|
|
};
|
|
|
|
#endif // MXPARAM_H
|