mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-31 00:04:07 -04:00
fa9b428351
* JKRDecomp OK * JKRFile and JKRDvdFile cleanup * more DVD stuff and cleanup JKRDvdFile more * formatting * JKRHeap cleanup * formatting * JKRDisposer cleanup * JKRAramBlock and JKRAramHeap cleanup * fix merge error * fixed comments * forgot to save file... * fix DVDCBcallback Co-authored-by: Julgodis <>
20 lines
337 B
C++
20 lines
337 B
C++
#ifndef __JKRDISPOSER_H__
|
|
#define __JKRDISPOSER_H__
|
|
|
|
#include "JSystem/JSupport/JSUList/JSUList.h"
|
|
#include "dolphin/types.h"
|
|
|
|
class JKRHeap;
|
|
class JKRDisposer {
|
|
public:
|
|
JKRDisposer();
|
|
virtual ~JKRDisposer();
|
|
|
|
public:
|
|
/* 0x00 */ // vtable
|
|
/* 0x04 */ JKRHeap* mHeap;
|
|
/* 0x08 */ JSULink<JKRDisposer> mLink;
|
|
};
|
|
|
|
#endif
|