isle/LEGO1/legoentity.h
2023-06-20 22:11:14 +02:00

16 lines
270 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 { return "LegoEntity"; }
};
#endif // LEGOENTITY_H