mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-29 16:14:59 -04:00
21 lines
306 B
C++
21 lines
306 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 |