mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
25 lines
352 B
C++
25 lines
352 B
C++
#ifndef JKRDISPOSER_H
|
|
#define JKRDISPOSER_H
|
|
|
|
#include "types.h"
|
|
#include "JSystem/JSupport/JSUList.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
|
|
class JKRHeap;
|
|
|
|
class JKRDisposer {
|
|
public:
|
|
JKRDisposer();
|
|
virtual ~JKRDisposer();
|
|
|
|
public:
|
|
JKRHeap* mRootHeap; // _4
|
|
JSULink<JKRDisposer> mPointerLinks; // _8
|
|
};
|
|
}
|
|
#endif
|
|
|
|
#endif
|