mirror of
https://github.com/isledecomp/isle.git
synced 2026-02-02 21:21:16 +00:00
add MxDSBuffer stub
This commit is contained in:
parent
b8a700967e
commit
7725d6e4f3
@ -111,6 +111,7 @@ add_library(lego1 SHARED
|
||||
LEGO1/mxdsaction.cpp
|
||||
LEGO1/mxdsactionlist.cpp
|
||||
LEGO1/mxdsanim.cpp
|
||||
LEGO1/mxdsbuffer.cpp
|
||||
LEGO1/mxdschunk.cpp
|
||||
LEGO1/mxdsevent.cpp
|
||||
LEGO1/mxdsfile.cpp
|
||||
@ -149,6 +150,7 @@ add_library(lego1 SHARED
|
||||
LEGO1/mxparam.cpp
|
||||
LEGO1/mxpresenter.cpp
|
||||
LEGO1/mxpresenterlist.cpp
|
||||
LEGO1/mxramstreamcontroller.cpp
|
||||
LEGO1/mxscheduler.cpp
|
||||
LEGO1/mxsemaphore.cpp
|
||||
LEGO1/mxsmkpresenter.cpp
|
||||
|
||||
13
LEGO1/mxdsbuffer.cpp
Normal file
13
LEGO1/mxdsbuffer.cpp
Normal file
@ -0,0 +1,13 @@
|
||||
#include "mxdsbuffer.h"
|
||||
|
||||
// OFFSET: LEGO1 0x100c6470
|
||||
MxDSBuffer::MxDSBuffer()
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x100c6530
|
||||
MxDSBuffer::~MxDSBuffer()
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
20
LEGO1/mxdsbuffer.h
Normal file
20
LEGO1/mxdsbuffer.h
Normal file
@ -0,0 +1,20 @@
|
||||
#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
|
||||
Loading…
Reference in New Issue
Block a user