mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 08:08:03 -05:00
0bb3ea6a03
* 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>
14 lines
277 B
C++
14 lines
277 B
C++
#ifndef MXSTRINGLIST_H
|
|
#define MXSTRINGLIST_H
|
|
|
|
#include "mxlist.h"
|
|
#include "mxstring.h"
|
|
|
|
// VTABLE 0x100dd040
|
|
// SIZE 0x18
|
|
class MxStringList : public MxList<MxString> {};
|
|
|
|
// VTABLE 0x100dd058
|
|
typedef MxListCursorChild<MxString> MxStringListCursor;
|
|
|
|
#endif // MXSTRINGLIST_H
|