mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
26 lines
438 B
C++
26 lines
438 B
C++
#ifndef ACT3ACTOR_H
|
|
#define ACT3ACTOR_H
|
|
|
|
#include "legoanimactor.h"
|
|
|
|
/*
|
|
XVTABLE: LEGO1 0x100d7668 LegoPathActor
|
|
XVTABLE: 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";
|
|
}
|
|
|
|
private:
|
|
undefined4 m_unk0x1c; // 0x1c
|
|
};
|
|
|
|
#endif // ACT3ACTOR_H
|