mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-07-03 11:00:17 -04:00
80ef14e480
* match and link JKRAram.cpp * match and link JKRExpHeap * match and link JKRAramStream.cpp * match and link JKRFileLoader.cpp * match and link JKRFileFinder.cpp * JKernel Dump * match and link JKRAramArchive.cpp * match and link JKRDvdArchive.cpp * match and link JKRCompArchive.cpp * match but not link JKRDvdAramRipper * small refactors * match and link JKRThread.cpp * fix and link JKRDvdAramStream.cpp * Formatting fixes --------- Co-authored-by: SwareJonge <olaf23okken@gmail.com>
22 lines
307 B
C++
22 lines
307 B
C++
#ifndef JKRDISPOSER_H
|
|
#define JKRDISPOSER_H
|
|
|
|
#include "types.h"
|
|
|
|
#include "JSystem/JSupport/JSUList.h"
|
|
|
|
class JKRHeap;
|
|
|
|
class JKRDisposer
|
|
{
|
|
public:
|
|
JKRDisposer();
|
|
virtual ~JKRDisposer();
|
|
|
|
public:
|
|
JKRHeap* mRootHeap; // _4
|
|
JSULink<JKRDisposer> mPointerLinks; // _8
|
|
};
|
|
|
|
#endif
|