2023-10-02 09:51:43 -04:00
|
|
|
#ifndef MXSTRINGLIST_H
|
|
|
|
#define MXSTRINGLIST_H
|
|
|
|
|
|
|
|
#include "mxlist.h"
|
|
|
|
#include "mxstring.h"
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dd040
|
2023-10-02 09:51:43 -04:00
|
|
|
// SIZE 0x18
|
|
|
|
class MxStringList : public MxList<MxString> {};
|
|
|
|
|
2023-12-06 07:10:45 -05:00
|
|
|
// VTABLE: LEGO1 0x100dd058
|
2023-12-07 14:14:49 -05:00
|
|
|
class MxStringListCursor : public MxListCursor<MxString> {
|
|
|
|
public:
|
|
|
|
MxStringListCursor(MxStringList* p_list) : MxListCursor<MxString>(p_list){};
|
|
|
|
};
|
|
|
|
|
|
|
|
// VTABLE: LEGO1 0x100dd070
|
|
|
|
// class MxListCursor<MxString>
|
2023-10-07 14:03:15 -04:00
|
|
|
|
2023-10-02 09:51:43 -04:00
|
|
|
#endif // MXSTRINGLIST_H
|