NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
d_dvd.hpp
1#pragma once
2#include <types.h>
3#include <lib/egg/core/eggHeap.h>
4
5namespace dDvd {
6
7class loader_c {
8public:
9 virtual ~loader_c();
10 virtual void freeHeap();
11
12private:
13 u32 mSize;
14 u32 mCommand;
15 EGG::Heap* mpHeap;
16 void* mpBuffer;
17};
18
19void create(long, EGG::Heap *, EGG::Heap *);
20
21} // namespace dDvd