isle-portable/LEGO1/act3actor.h

17 lines
370 B
C
Raw Normal View History

#ifndef ACT3ACTOR_H
#define ACT3ACTOR_H
// FIXME: Uncertain location. There are three vtables which eventually call this
// class' ClassName() function, but none of them call it directly.
2023-10-24 19:38:27 -04:00
class Act3Actor {
public:
2023-10-24 19:38:27 -04:00
// OFFSET: LEGO1 0x100431b0
inline virtual const char* ClassName() override
{
// 0x100f03ac
return "Act3Actor";
}
};
#endif // ACT3ACTOR_H