mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00: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
|