mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-29 19:05:34 -05:00
15 lines
134 B
C
15 lines
134 B
C
|
#ifndef MXCORE_H
|
||
|
#define MXCORE_H
|
||
|
|
||
|
class MxCore
|
||
|
{
|
||
|
public:
|
||
|
virtual ~MxCore();
|
||
|
|
||
|
private:
|
||
|
unsigned int m_id;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // MXCORE_H
|