2023-06-29 04:10:08 -04:00
|
|
|
#ifndef ACT3ACTOR_H
|
|
|
|
#define ACT3ACTOR_H
|
|
|
|
|
2024-03-22 21:30:58 -04:00
|
|
|
#include "legoanimactor.h"
|
2024-01-06 12:56:15 -05:00
|
|
|
|
2024-03-22 21:30:58 -04:00
|
|
|
/*
|
|
|
|
VTABLE: LEGO1 0x100d7668 LegoPathActor
|
|
|
|
VTABLE: LEGO1 0x100d7738 LegoAnimActor
|
|
|
|
*/
|
|
|
|
// SIZE 0x178
|
|
|
|
class Act3Actor : public LegoAnimActor {
|
2023-06-29 04:10:08 -04:00
|
|
|
public:
|
2024-03-22 21:30:58 -04:00
|
|
|
Act3Actor();
|
|
|
|
|
|
|
|
// FUNCTION: LEGO1 0x100433b0
|
2024-02-01 15:42:10 -05:00
|
|
|
inline const char* ClassName() const override
|
2023-10-24 19:38:27 -04:00
|
|
|
{
|
2023-12-27 15:59:42 -05:00
|
|
|
// STRING: LEGO1 0x100f03ac
|
2023-10-24 19:38:27 -04:00
|
|
|
return "Act3Actor";
|
|
|
|
}
|
2024-03-22 21:30:58 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
undefined4 m_unk0x1c; // 0x1c
|
2023-06-29 04:10:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ACT3ACTOR_H
|