mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
ce686705f2
* LegoWorldList * Refactor list cursors * Add decomp markers for list cursors * Fix decomp markers * MxRegionListCursor edit to prevent accuracy drop * Better fix for MxRegionListCursor
20 lines
444 B
C++
20 lines
444 B
C++
#ifndef MXSTRINGLIST_H
|
|
#define MXSTRINGLIST_H
|
|
|
|
#include "mxlist.h"
|
|
#include "mxstring.h"
|
|
|
|
// VTABLE: LEGO1 0x100dd040
|
|
// SIZE 0x18
|
|
class MxStringList : public MxList<MxString> {};
|
|
|
|
// VTABLE: LEGO1 0x100dd058
|
|
class MxStringListCursor : public MxListCursor<MxString> {
|
|
public:
|
|
MxStringListCursor(MxStringList* p_list) : MxListCursor<MxString>(p_list){};
|
|
};
|
|
|
|
// VTABLE: LEGO1 0x100dd070
|
|
// class MxListCursor<MxString>
|
|
|
|
#endif // MXSTRINGLIST_H
|