mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-14 04:01:15 +00:00
12 lines
234 B
C++
12 lines
234 B
C++
#ifndef ISLEACTOR_H
|
|
#define ISLEACTOR_H
|
|
|
|
#include "legoentity.h"
|
|
|
|
class IsleActor : public LegoEntity
|
|
{
|
|
virtual const char* GetClassName() const;
|
|
virtual MxBool IsClass(const char *name) const;
|
|
};
|
|
|
|
#endif // ISLEACTOR_H
|