mirror of
https://github.com/isledecomp/isle.git
synced 2025-12-10 08:03:13 +00:00
MxList refactor (#290)
* MxList refactor * Reorder LegoPathControllerList::Destroy * MxPtrList custom destructor and more offsets Co-authored-by: Christian Semmler <mail@csemmler.com> * Fix member offset comments in collection classes * Fix template annotations --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
@@ -6,29 +6,23 @@
|
||||
|
||||
class MxStreamChunk;
|
||||
|
||||
// VTABLE 0x100dc5d0 TEMPLATE
|
||||
// class MxCollection<MxStreamChunk *>
|
||||
|
||||
// VTABLE 0x100dc5e8 TEMPLATE
|
||||
// class MxList<MxStreamChunk *>
|
||||
|
||||
// VTABLE 0x100dc600
|
||||
// SIZE 0x18
|
||||
class MxStreamChunkList : public MxList<MxStreamChunk*> {
|
||||
public:
|
||||
MxStreamChunkList() { m_customDestructor = Destroy; }
|
||||
|
||||
virtual MxS8 Compare(MxStreamChunk*, MxStreamChunk*) override; // +0x14
|
||||
virtual MxS8 Compare(MxStreamChunk*, MxStreamChunk*) override; // vtable+0x14
|
||||
|
||||
static void Destroy(MxStreamChunk* p_chunk);
|
||||
};
|
||||
|
||||
typedef MxListCursorChild<MxStreamChunk*> MxStreamChunkListCursor;
|
||||
|
||||
// OFFSET: LEGO1 0x100b5930 TEMPLATE
|
||||
// MxListParent<MxStreamChunk *>::Compare
|
||||
|
||||
// OFFSET: LEGO1 0x100b5990 TEMPLATE
|
||||
// MxListParent<MxStreamChunk *>::Destroy
|
||||
|
||||
// OFFSET: LEGO1 0x100b59a0 TEMPLATE
|
||||
// MxList<MxStreamChunk *>::~MxList<MxStreamChunk *>
|
||||
|
||||
// OFFSET: LEGO1 0x100b5b10 TEMPLATE
|
||||
// MxList<MxStreamChunk *>::`scalar deleting destructor'
|
||||
|
||||
#endif // MXSTREAMCHUNKLIST_H
|
||||
|
||||
Reference in New Issue
Block a user