Implement/match LegoPartPresenter::Read (#642)

* WIP

* Match

* Remove TODO

* Fix
This commit is contained in:
Christian Semmler
2024-03-09 12:27:53 -05:00
committed by GitHub
parent 9e2f37e7ca
commit 9f875d01e5
8 changed files with 311 additions and 8 deletions

View File

@@ -0,0 +1,52 @@
#ifndef LEGOLODLIST_H
#define LEGOLODLIST_H
#include "mxlist.h"
#include "roi/legolod.h"
#pragma warning(disable : 4786)
// VTABLE: LEGO1 0x100d9d30
// class MxCollection<LegoLOD *>
// VTABLE: LEGO1 0x100d9d48
// class MxList<LegoLOD *>
// VTABLE: LEGO1 0x100d9d60
// class MxPtrList<LegoLOD>
// VTABLE: LEGO1 0x100d9d78
// SIZE 0x18
class LegoLODList : public MxPtrList<LegoLOD> {
public:
LegoLODList() : MxPtrList<LegoLOD>(FALSE) {}
// SYNTHETIC: LEGO1 0x1007de40
// LegoLODList::`scalar deleting destructor'
};
// TEMPLATE: LEGO1 0x1007d480
// MxCollection<LegoLOD *>::Compare
// TEMPLATE: LEGO1 0x1007d490
// MxCollection<LegoLOD *>::~MxCollection<LegoLOD *>
// TEMPLATE: LEGO1 0x1007d4e0
// MxCollection<LegoLOD *>::Destroy
// TEMPLATE: LEGO1 0x1007d4f0
// MxList<LegoLOD *>::~MxList<LegoLOD *>
// SYNTHETIC: LEGO1 0x1007d580
// MxCollection<LegoLOD *>::`scalar deleting destructor'
// SYNTHETIC: LEGO1 0x1007d5f0
// MxList<LegoLOD *>::`scalar deleting destructor'
// SYNTHETIC: LEGO1 0x1007d6a0
// MxPtrList<LegoLOD>::`scalar deleting destructor'
// TEMPLATE: LEGO1 0x1007d710
// MxPtrList<LegoLOD>::~MxPtrList<LegoLOD>
#endif // LEGOLODLIST_H