mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
ba82821501
* Bootstrap MxMediaPresenter * Implement/match MxMediaPresenter::Tickle and related * Implement AppendChunk and Enable
29 lines
597 B
C++
29 lines
597 B
C++
#ifndef MXSTREAMCHUNK_H
|
|
#define MXSTREAMCHUNK_H
|
|
|
|
#include "mxdschunk.h"
|
|
|
|
// VTABLE 0x100dc2a8
|
|
// SIZE 0x20
|
|
class MxStreamChunk : public MxDSChunk {
|
|
public:
|
|
inline MxStreamChunk() : m_unk1c(NULL) {}
|
|
|
|
// OFFSET: LEGO1 0x100b1fe0
|
|
inline virtual const char* ClassName() const override // vtable+0xc
|
|
{
|
|
// 0x10101e5c
|
|
return "MxStreamChunk";
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100b1ff0
|
|
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, MxStreamChunk::ClassName()) || MxDSChunk::IsA(name);
|
|
}
|
|
|
|
private:
|
|
void* m_unk1c; // 0x1c
|
|
};
|
|
|
|
#endif // MXSTREAMCHUNK_H
|