mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
22ac0b9296
* Add missing ClassName's and IsA's Exceptions: LegoAnimActor as it does something weird with a call to another private/inlined function(?) and RaceStandsEntity which seems to have two vtables * clang-format --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
22 lines
498 B
C++
22 lines
498 B
C++
#ifndef MXSTREAMCHUNK_H
|
|
#define MXSTREAMCHUNK_H
|
|
|
|
#include "mxdschunk.h"
|
|
|
|
// VTABLE 0x100dc2a8
|
|
class MxStreamChunk : public MxDSChunk {
|
|
// 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);
|
|
}
|
|
};
|
|
|
|
#endif // MXSTREAMCHUNK_H
|