New Super Mario Bros. U Headers
Loading...
Searching...
No Matches
LayoutAllocator.h
Go to the documentation of this file.
1#pragma once
2
3#include <heap/seadHeap.h>
4
5#include <nw/ut/ut_Memory.h>
6
7class LayoutAllocator : public nw::ut::IAllocator // vtbl Address: 0x100E38C0
8{
9public:
10 // GetRuntimeTypeInfoStatic()::s_TypeInfo initialization guard variable Address: 0x101E9DC4
11 // GetRuntimeTypeInfoStatic()::s_TypeInfo Address: 0x101EAF40
13
15 : mHeap(nullptr)
16 {
17 }
18
19 // Address: 0x02679708
21 // Address: 0x0267971C
22 void Free(void* memory) override;
23
24 // Address: 0x02679730
25 void setHeap(sead::Heap* heap);
26
27protected:
29};
30static_assert(sizeof(LayoutAllocator) == 8);
Definition LayoutAllocator.h:8
void Free(void *memory) override
sead::Heap * mHeap
Definition LayoutAllocator.h:28
void setHeap(sead::Heap *heap)