2023-11-19 07:23:30 -05:00
|
|
|
#ifndef LEGOPATHCONTROLLERLIST_H
|
|
|
|
#define LEGOPATHCONTROLLERLIST_H
|
|
|
|
|
|
|
|
#include "legopathcontroller.h"
|
|
|
|
#include "mxlist.h"
|
|
|
|
#include "mxtypes.h"
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6320
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxPtrList<LegoPathController>
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6338
|
2023-11-19 07:23:30 -05:00
|
|
|
// SIZE 0x18
|
|
|
|
class LegoPathControllerList : public MxPtrList<LegoPathController> {
|
|
|
|
public:
|
|
|
|
LegoPathControllerList() : MxPtrList<LegoPathController>(Destroy) {}
|
|
|
|
virtual MxS8 Compare(LegoPathController*, LegoPathController*) override; // vtable+0x14
|
|
|
|
static void Destroy(LegoPathController*);
|
|
|
|
};
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6380
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxCollection<LegoPathController *>
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100d6398
|
2023-11-19 07:23:30 -05:00
|
|
|
// class MxList<LegoPathController *>
|
|
|
|
|
|
|
|
#endif // LEGOPATHCONTROLLERLIST_H
|