add MxRAMStreamController stub

This commit is contained in:
MattKC 2023-09-25 16:30:45 -07:00
parent 7725d6e4f3
commit 7827e3a962
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,3 @@
#include "mxramstreamcontroller.h"
DECOMP_SIZE_ASSERT(MxRAMStreamController, 0x98);

View File

@ -1,11 +1,18 @@
#ifndef MXRAMSTREAMCONTROLLER_H
#define MXRAMSTREAMCONTROLLER_H
#include "mxdsbuffer.h"
#include "mxstreamcontroller.h"
// VTABLE 0x100dc728
// SIZE 0x98
class MxRAMStreamController : public MxStreamController
{
public:
inline MxRAMStreamController() {}
private:
MxDSBuffer m_buffer;
};