mirror of
https://github.com/isledecomp/isle.git
synced 2026-02-02 21:21:16 +00:00
20 lines
330 B
C++
20 lines
330 B
C++
#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;
|
|
|
|
};
|
|
|
|
#endif // MXRAMSTREAMCONTROLLER_H
|