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