isle/LEGO1/legoentity.h
Cydra 068e37040a Created a bunch more classes and added more information to exisiting ones
Did not error check, this was pushed just for reference
2023-06-21 14:24:59 +02:00

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