mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-11 10:41:16 +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
|