mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
Implement LegoTexturePresenter::Read and Store (#641)
* LegoTexturePresenter::Read * Implement LegoTexturePresenter::Store * Rename * Fix naming
This commit is contained in:

committed by
GitHub

parent
fb800db862
commit
9e2f37e7ca
84
LEGO1/lego/legoomni/include/legonamedtexturelist.h
Normal file
84
LEGO1/lego/legoomni/include/legonamedtexturelist.h
Normal file
@@ -0,0 +1,84 @@
|
||||
#ifndef LEGONAMEDTEXTURELIST_H
|
||||
#define LEGONAMEDTEXTURELIST_H
|
||||
|
||||
#include "legonamedtexture.h"
|
||||
#include "mxlist.h"
|
||||
|
||||
// VTABLE: LEGO1 0x100d8110
|
||||
// class MxCollection<LegoNamedTexture *>
|
||||
|
||||
// VTABLE: LEGO1 0x100d8128
|
||||
// class MxList<LegoNamedTexture *>
|
||||
|
||||
// VTABLE: LEGO1 0x100d8140
|
||||
// class MxPtrList<LegoNamedTexture>
|
||||
|
||||
// VTABLE: LEGO1 0x100d8158
|
||||
// SIZE 0x18
|
||||
class LegoNamedTextureList : public MxPtrList<LegoNamedTexture> {
|
||||
public:
|
||||
LegoNamedTextureList() : MxPtrList<LegoNamedTexture>(TRUE) {}
|
||||
|
||||
// SYNTHETIC: LEGO1 0x1004f040
|
||||
// LegoNamedTextureList::`scalar deleting destructor'
|
||||
};
|
||||
|
||||
// VTABLE: LEGO1 0x100d8170
|
||||
// class MxListCursor<LegoNamedTexture *>
|
||||
|
||||
// VTABLE: LEGO1 0x100d8188
|
||||
// class MxPtrListCursor<LegoNamedTexture>
|
||||
|
||||
// VTABLE: LEGO1 0x100d81a0
|
||||
// SIZE 0x10
|
||||
class LegoNamedTextureListCursor : public MxPtrListCursor<LegoNamedTexture> {
|
||||
public:
|
||||
LegoNamedTextureListCursor(LegoNamedTextureList* p_list) : MxPtrListCursor<LegoNamedTexture>(p_list) {}
|
||||
};
|
||||
|
||||
// SYNTHETIC: LEGO1 0x1004f500
|
||||
// LegoNamedTextureListCursor::`scalar deleting destructor'
|
||||
|
||||
// FUNCTION: LEGO1 0x1004f570
|
||||
// MxPtrListCursor<LegoNamedTexture>::~MxPtrListCursor<LegoNamedTexture>
|
||||
|
||||
// SYNTHETIC: LEGO1 0x1004f5c0
|
||||
// MxListCursor<LegoNamedTexture *>::`scalar deleting destructor'
|
||||
|
||||
// SYNTHETIC: LEGO1 0x1004f630
|
||||
// MxPtrListCursor<LegoNamedTexture>::`scalar deleting destructor'
|
||||
|
||||
// FUNCTION: LEGO1 0x1004f6a0
|
||||
// MxListCursor<LegoNamedTexture *>::~MxListCursor<LegoNamedTexture *>
|
||||
|
||||
// FUNCTION: LEGO1 0x1004f6f0
|
||||
// LegoNamedTextureListCursor::~LegoNamedTextureListCursor
|
||||
|
||||
// TEMPLATE: LEGO1 0x1004eec0
|
||||
// MxCollection<LegoNamedTexture *>::Compare
|
||||
|
||||
// TEMPLATE: LEGO1 0x1004eed0
|
||||
// MxCollection<LegoNamedTexture *>::~MxCollection<LegoNamedTexture *>
|
||||
|
||||
// TEMPLATE: LEGO1 0x1004ef20
|
||||
// MxCollection<LegoNamedTexture *>::Destroy
|
||||
|
||||
// TEMPLATE: LEGO1 0x1004ef30
|
||||
// MxList<LegoNamedTexture *>::~MxList<LegoNamedTexture *>
|
||||
|
||||
// TEMPLATE: LEGO1 0x1004efc0
|
||||
// MxPtrList<LegoNamedTexture>::Destroy
|
||||
|
||||
// TEMPLATE: LEGO1 0x1004f0b0
|
||||
// MxPtrList<LegoNamedTexture>::~MxPtrList<LegoNamedTexture>
|
||||
|
||||
// SYNTHETIC: LEGO1 0x1004f100
|
||||
// MxCollection<LegoNamedTexture *>::`scalar deleting destructor'
|
||||
|
||||
// SYNTHETIC: LEGO1 0x1004f170
|
||||
// MxList<LegoNamedTexture *>::`scalar deleting destructor'
|
||||
|
||||
// SYNTHETIC: LEGO1 0x1004f220
|
||||
// MxPtrList<LegoNamedTexture>::`scalar deleting destructor'
|
||||
|
||||
#endif // LEGONAMEDTEXTURELIST_H
|
Reference in New Issue
Block a user