2023-06-11 21:03:54 -04:00
|
|
|
#ifndef LEGOWORLD_H
|
|
|
|
#define LEGOWORLD_H
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "legoentity.h"
|
|
|
|
|
|
|
|
// VTABLE 0x100d6280
|
|
|
|
// SIZE 0xf8
|
|
|
|
class LegoWorld : public LegoEntity
|
2023-06-11 21:03:54 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
__declspec(dllexport) LegoWorld();
|
2023-06-29 04:10:08 -04:00
|
|
|
__declspec(dllexport) virtual ~LegoWorld(); // vtable+0x0
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1001d690
|
|
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
|
|
|
{
|
|
|
|
// 0x100f0058
|
|
|
|
return "LegoWorld";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x1001d6a0
|
|
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, LegoWorld::ClassName()) || LegoEntity::IsA(name);
|
|
|
|
}
|
2023-06-11 21:03:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOWORLD_H
|