mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
06c7ba2c37
* MxDiskStreamProvider constructor * Add work-in-progress list struct to MxDiskStreamProvider --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
33 lines
675 B
C++
33 lines
675 B
C++
#ifndef MXSTREAMPROVIDER_H
|
|
#define MXSTREAMPROVIDER_H
|
|
|
|
#include "mxcore.h"
|
|
#include "mxdsfile.h"
|
|
|
|
// VTABLE 0x100dd100
|
|
class MxStreamProvider : public MxCore
|
|
{
|
|
public:
|
|
inline MxStreamProvider() {
|
|
this->m_pLookup = NULL;
|
|
this->m_pFile = NULL;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100d07e0
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
|
{
|
|
return "MxStreamProvider";
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100d07f0
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, MxStreamProvider::ClassName()) || MxCore::IsA(name);
|
|
}
|
|
|
|
protected:
|
|
void *m_pLookup;
|
|
MxDSFile* m_pFile;
|
|
};
|
|
|
|
#endif // MXSTREAMPROVIDER_H
|