mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
23b9d47e8a
* implement EndAction implement EndAction +offsets commenets * Refactor MxParam/MxNotificationParam * Add correct address for destructor * Make MxNoticiationParam more concise --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
10 lines
109 B
C++
10 lines
109 B
C++
#ifndef MXPARAM_H
|
|
#define MXPARAM_H
|
|
|
|
class MxParam
|
|
{
|
|
public:
|
|
virtual ~MxParam() {}
|
|
};
|
|
|
|
#endif // MXPARAM_H
|