mirror of
https://github.com/zeldaret/botw
synced 2026-06-01 09:47:27 -04:00
22 lines
371 B
C++
22 lines
371 B
C++
#pragma once
|
|
|
|
#include <heap/seadDisposer.h>
|
|
#include "KingSystem/Utils/Types.h"
|
|
|
|
namespace ksys {
|
|
|
|
class MemoryProfiler {
|
|
SEAD_SINGLETON_DISPOSER(MemoryProfiler)
|
|
MemoryProfiler() = default;
|
|
|
|
public:
|
|
void init(sead::Heap* heap);
|
|
|
|
sead::Heap* mHeap{};
|
|
void* _28{};
|
|
void* _30{};
|
|
};
|
|
KSYS_CHECK_SIZE_NX150(MemoryProfiler, 0x38);
|
|
|
|
} // namespace ksys
|