mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +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:
26
LEGO1/legopathcontrollerlist.h
Normal file
26
LEGO1/legopathcontrollerlist.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef LEGOPATHCONTROLLERLIST_H
|
||||
#define LEGOPATHCONTROLLERLIST_H
|
||||
|
||||
#include "legopathcontroller.h"
|
||||
#include "mxlist.h"
|
||||
#include "mxtypes.h"
|
||||
|
||||
// VTABLE 0x100d6320 TEMPLATE
|
||||
// class MxPtrList<LegoPathController>
|
||||
|
||||
// VTABLE 0x100d6338
|
||||
// SIZE 0x18
|
||||
class LegoPathControllerList : public MxPtrList<LegoPathController> {
|
||||
public:
|
||||
LegoPathControllerList() : MxPtrList<LegoPathController>(Destroy) {}
|
||||
virtual MxS8 Compare(LegoPathController*, LegoPathController*) override; // vtable+0x14
|
||||
static void Destroy(LegoPathController*);
|
||||
};
|
||||
|
||||
// VTABLE 0x100d6380 TEMPLATE
|
||||
// class MxCollection<LegoPathController *>
|
||||
|
||||
// VTABLE 0x100d6398 TEMPLATE
|
||||
// class MxList<LegoPathController *>
|
||||
|
||||
#endif // LEGOPATHCONTROLLERLIST_H
|
Reference in New Issue
Block a user