mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-14 04:01:15 +00:00
17 lines
296 B
C++
17 lines
296 B
C++
#ifndef LEGOENTITY_H
|
|
#define LEGOENTITY_H
|
|
|
|
#include "mxentity.h"
|
|
|
|
class LegoEntity : public MxEntity
|
|
{
|
|
public:
|
|
LegoEntity();
|
|
__declspec(dllexport) virtual ~LegoEntity();
|
|
|
|
virtual const char* GetClassName() const;
|
|
virtual MxBool IsClass(const char *name) const;
|
|
};
|
|
|
|
#endif // LEGOENTITY_H
|