mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
MxDiskStreamProvider constructor (#131)
* MxDiskStreamProvider constructor * Add work-in-progress list struct to MxDiskStreamProvider --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
@@ -8,6 +8,11 @@
|
||||
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
|
||||
{
|
||||
@@ -20,7 +25,7 @@ public:
|
||||
return !strcmp(name, MxStreamProvider::ClassName()) || MxCore::IsA(name);
|
||||
}
|
||||
|
||||
private:
|
||||
protected:
|
||||
void *m_pLookup;
|
||||
MxDSFile* m_pFile;
|
||||
};
|
||||
|
Reference in New Issue
Block a user