mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
7f7e6e37dd
* push changes * Match and add annotations * Fix annotations --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
80 lines
1.9 KiB
C++
80 lines
1.9 KiB
C++
#ifndef LEGOWORLDLIST_H
|
|
#define LEGOWORLDLIST_H
|
|
|
|
#include "mxlist.h"
|
|
#include "mxtypes.h"
|
|
|
|
class LegoWorld;
|
|
|
|
// VTABLE: LEGO1 0x100d8700
|
|
// class MxCollection<LegoWorld *>
|
|
|
|
// VTABLE: LEGO1 0x100d8718
|
|
// class MxList<LegoWorld *>
|
|
|
|
// VTABLE: LEGO1 0x100d8730
|
|
// class MxPtrList<LegoWorld>
|
|
|
|
// VTABLE: LEGO1 0x100d8680
|
|
// SIZE 0x18
|
|
class LegoWorldList : public MxPtrList<LegoWorld> {
|
|
public:
|
|
LegoWorldList(MxBool p_ownership = FALSE) : MxPtrList<LegoWorld>(p_ownership) {}
|
|
|
|
// FUNCTION: LEGO1 0x100598d0
|
|
virtual MxS8 Compare(LegoWorld* p_a, LegoWorld* p_b) override
|
|
{
|
|
return p_a == p_b ? 0 : p_a < p_b ? -1 : 1;
|
|
}; // vtable+0x14
|
|
};
|
|
|
|
// VTABLE: LEGO1 0x100d75b8
|
|
// class MxListCursor<LegoWorld *>
|
|
|
|
// VTABLE: LEGO1 0x100d7588
|
|
// class MxPtrListCursor<LegoWorld>
|
|
|
|
// VTABLE: LEGO1 0x100d75a0
|
|
// SIZE 0x10
|
|
class LegoWorldListCursor : public MxPtrListCursor<LegoWorld> {
|
|
public:
|
|
LegoWorldListCursor(LegoWorldList* p_list) : MxPtrListCursor<LegoWorld>(p_list){};
|
|
};
|
|
|
|
// TEMPLATE: LEGO1 0x100598f0
|
|
// MxCollection<LegoWorld *>::Compare
|
|
|
|
// TEMPLATE: LEGO1 0x10059900
|
|
// MxCollection<LegoWorld *>::~MxCollection<LegoWorld *>
|
|
|
|
// TEMPLATE: LEGO1 0x10059950
|
|
// MxCollection<LegoWorld *>::Destroy
|
|
|
|
// TEMPLATE: LEGO1 0x10059960
|
|
// MxList<LegoWorld *>::~MxList<LegoWorld *>
|
|
|
|
// TEMPLATE: LEGO1 0x100599f0
|
|
// MxPtrList<LegoWorld>::Destroy
|
|
|
|
// SYNTHETIC: LEGO1 0x10059ac0
|
|
// MxCollection<LegoWorld *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x10059b30
|
|
// MxList<LegoWorld *>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x10059be0
|
|
// MxPtrList<LegoWorld>::`scalar deleting destructor'
|
|
|
|
// SYNTHETIC: LEGO1 0x1003e870
|
|
// LegoWorldListCursor::`scalar deleting destructor'
|
|
|
|
// FUNCTION: LEGO1 0x1003e8e0
|
|
// MxPtrListCursor<LegoWorld>::~MxPtrListCursor<LegoWorld>
|
|
|
|
// FUNCTION: LEGO1 0x1003ea10
|
|
// MxListCursor<LegoWorld *>::~MxListCursor<LegoWorld *>
|
|
|
|
// FUNCTION: LEGO1 0x1003ea60
|
|
// LegoWorldListCursor::~LegoWorldListCursor
|
|
|
|
#endif // LEGOWORLDLIST_H
|