Files
2025-09-16 22:32:07 -04:00

40 lines
816 B
C++

#ifndef EGG_DISPOSER_H
#define EGG_DISPOSER_H
// This file was adapted from https://github.com/riidefi/mkw/blob/master/source/egg/core/eggDisposer.hpp
#include "common.h"
#include "nw4r/ut.h"
namespace EGG {
class Heap;
class Disposer : private NonCopyable {
public:
/* vt 0x08 */ virtual ~Disposer();
Disposer();
public:
enum eLifetime {
LIFETIME_UNMANAGED,
LIFETIME_HEAP_GC
};
inline eLifetime getLifetime() const {
return mContainHeap != nullptr ? LIFETIME_HEAP_GC : LIFETIME_UNMANAGED;
}
private:
/* 0x04 */ Heap *mContainHeap;
/* 0x08 */ nw4r::ut::Node mList;
};
// TODO: Add singleton define for the T__Disposer stuff.
// see https://github.com/open-ead/sead/blob/master/include/heap/seadDisposer.h
// for reference
}; // namespace EGG
#endif