mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-22 22:44:14 -04:00
cd087d8511
* regs.h * gfxalloc.h * z64inventory.h * gfx.h * graph.h * z64olib.h * z64elf_message.h * fix missing include * Include z64inventory.h on z64save.h * fix bss * Move PosRot to z64math.h * So dumb * Update src/overlays/actors/ovl_En_Kusa/z_en_kusa.c Co-authored-by: Derek Hensley <hensley.derek58@gmail.com> * review * Remove graph.h * bss --------- Co-authored-by: Derek Hensley <hensley.derek58@gmail.com>
11 lines
172 B
C
11 lines
172 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, size_t size);
|
|
|
|
#endif
|