mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
11 lines
169 B
C
11 lines
169 B
C
|
#ifndef GFXALLOC_H
|
||
|
#define GFXALLOC_H
|
||
|
|
||
|
#include "ultra64.h"
|
||
|
|
||
|
Gfx* Gfx_Open(Gfx* gfx);
|
||
|
Gfx* Gfx_Close(Gfx* gfx, Gfx* dst);
|
||
|
void* Gfx_Alloc(Gfx** gfxP, u32 size);
|
||
|
|
||
|
#endif
|