#ifndef LEGOENTITYLIST_H #define LEGOENTITYLIST_H #include "mxlist.h" #include "mxtypes.h" class LegoEntity; // VTABLE: LEGO1 0x100d6410 // class MxCollection // VTABLE: LEGO1 0x100d6428 // class MxList // VTABLE: LEGO1 0x100d6440 // class MxPtrList // VTABLE: LEGO1 0x100d6458 // SIZE 0x18 class LegoEntityList : public MxPtrList { public: LegoEntityList(MxBool p_ownership = FALSE) : MxPtrList(p_ownership) {} // FUNCTION: LEGO1 0x1001e2d0 MxS8 Compare(LegoEntity* p_a, LegoEntity* p_b) override { return p_a == p_b ? 0 : p_a < p_b ? -1 : 1; } // vtable+0x14 }; // VTABLE: LEGO1 0x100d64e8 // class MxListCursor // VTABLE: LEGO1 0x100d64b8 // class MxPtrListCursor // VTABLE: LEGO1 0x100d64d0 // SIZE 0x10 class LegoEntityListCursor : public MxPtrListCursor { public: LegoEntityListCursor(LegoEntityList* p_list) : MxPtrListCursor(p_list){}; }; // TEMPLATE: LEGO1 0x1001e2f0 // MxCollection::Compare // TEMPLATE: LEGO1 0x1001e300 // MxCollection::~MxCollection // TEMPLATE: LEGO1 0x1001e350 // MxCollection::Destroy // TEMPLATE: LEGO1 0x1001e360 // MxList::~MxList // TEMPLATE: LEGO1 0x1001e3f0 // MxPtrList::Destroy // SYNTHETIC: LEGO1 0x1001e400 // LegoEntityList::`scalar deleting destructor' // TEMPLATE: LEGO1 0x1001e470 // MxPtrList::~MxPtrList // SYNTHETIC: LEGO1 0x1001e4c0 // MxCollection::`scalar deleting destructor' // SYNTHETIC: LEGO1 0x1001e530 // MxList::`scalar deleting destructor' // SYNTHETIC: LEGO1 0x1001e5e0 // MxPtrList::`scalar deleting destructor' // SYNTHETIC: LEGO1 0x1001f110 // LegoEntityListCursor::`scalar deleting destructor' // FUNCTION: LEGO1 0x1001f180 // MxPtrListCursor::~MxPtrListCursor // SYNTHETIC: LEGO1 0x1001f1d0 // MxListCursor::`scalar deleting destructor' // SYNTHETIC: LEGO1 0x1001f240 // MxPtrListCursor::`scalar deleting destructor' // FUNCTION: LEGO1 0x1001f2b0 // MxListCursor::~MxListCursor // FUNCTION: LEGO1 0x1001f300 // LegoEntityListCursor::~LegoEntityListCursor // TEMPLATE: LEGO1 0x100207d0 // MxListCursor::MxListCursor // TEMPLATE: LEGO1 0x10022430 // MxList::InsertEntry // TEMPLATE: LEGO1 0x10022630 // MxList::DeleteEntry #endif // LEGOENTITYLIST_H