mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-15 20:51:14 +00:00
16 lines
309 B
C++
16 lines
309 B
C++
#ifndef LEGOCONTROLMANAGER_H
|
|
#define LEGOCONTROLMANAGER_H
|
|
|
|
#include "mxcore.h"
|
|
|
|
class LegoControlManager : public MxCore
|
|
{
|
|
public:
|
|
virtual ~LegoControlManager();
|
|
|
|
virtual const char* GetClassName() const;
|
|
virtual MxBool IsClass(const char *name) const;
|
|
};
|
|
|
|
#endif // LEGOCONTROLMANAGER_H
|