mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 16:51:15 +00:00
18 lines
383 B
C++
18 lines
383 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){};
|
|
};
|
|
|
|
#endif // MXSTRINGLIST_H
|