NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
MEMList.h
1#pragma once
2#include <types.h>
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8typedef struct {
9 void *mpPrev;
10 void *mpNext;
11} MEMLink;
12
13typedef struct {
14 void *mpHead;
15 void *mpTail;
16 u16 mCount;
17 u16 mOffset;
18} MEMList;
19
20#ifdef __cplusplus
21}
22#endif