mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-13 03:31:15 +00:00
16 lines
271 B
C++
16 lines
271 B
C++
#ifndef LEGOANIMACTOR_H
|
|
#define LEGOANIMACTOR_H
|
|
|
|
#include "legopathactor.h"
|
|
|
|
class LegoAnimActor : public LegoPathActor
|
|
{
|
|
public:
|
|
virtual const char* ClassName() const;
|
|
virtual MxBool IsA(const char *name) const;
|
|
|
|
// VTABLE 0x100d5440
|
|
};
|
|
|
|
#endif // LEGOANIMACTOR_H
|