isle/LEGO1/act3actor.h
Misha 40d51659d3
Add most of LegoObjectFactory (#365)
* push changes

* push changes

* fix

* Update legoracecar.h
2023-12-26 18:10:28 -05:00

16 lines
402 B
C++

#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.
class Act3Actor : public MxCore {
public:
// FUNCTION: LEGO1 0x100431b0
inline virtual const char* ClassName() override
{
// GLOBAL: LEGO1 0x100f03ac
return "Act3Actor";
}
};
#endif // ACT3ACTOR_H