mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 03:31:15 +00:00
16 lines
270 B
C++
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
|