isle/LEGO1/lego/legoomni/include/act3actor.h
Nathan a45706a854 Fix size annotations for legoomni
Fix structure and add placeholder annotations for LegoAnimActor and subclasses
2024-03-22 18:22:23 -04:00

23 lines
397 B
C++

#ifndef ACT3ACTOR_H
#define ACT3ACTOR_H
#include "legoanimactor.h"
/*
VTABLE : LEGO1 0x100d7668 LegoPathActor
VTABLE : LEGO1 0x100d7738 LegoAnimActor
*/
// SIZE 0x178
class Act3Actor : public LegoAnimActor {
public:
Act3Actor();
// FUNCTION: LEGO1 0x100433b0
inline const char* ClassName() const override
{
// STRING: LEGO1 0x100f03ac
return "Act3Actor";
}
};
#endif // ACT3ACTOR_H