mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-26 17:36:12 -05:00
21 lines
276 B
C
21 lines
276 B
C
|
#ifndef MXDSBUFFER_H
|
||
|
#define MXDSBUFFER_H
|
||
|
|
||
|
#include "decomp.h"
|
||
|
#include "mxcore.h"
|
||
|
|
||
|
// VTABLE 0x100dcca0
|
||
|
// SIZE 0x34
|
||
|
class MxDSBuffer : public MxCore
|
||
|
{
|
||
|
public:
|
||
|
MxDSBuffer();
|
||
|
virtual ~MxDSBuffer() override;
|
||
|
|
||
|
private:
|
||
|
undefined m_unk08[0x2C];
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // MXDSBUFFER_H
|