mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-05 07:24:34 +00:00
Reduce overlay dependencies on global.h (8) (#2478)
* move variables into z64environment.h * z_room.h * z64sram.h, z64ss_sram.h, z64font.h, kanread.h * z64lifemeter.h, z64debug.h, debug_arena.h * buffers.h * remove z_bgcheck global * gamealloc.h * suggestions * .bdd
This commit is contained in:
parent
3d61fb85ef
commit
981af4b6af
72 changed files with 578 additions and 392 deletions
17
include/z64debug.h
Normal file
17
include/z64debug.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef Z64DEBUG_H
|
||||
#define Z64DEBUG_H
|
||||
|
||||
#include "ultra64.h"
|
||||
|
||||
struct GraphicsContext;
|
||||
struct Input;
|
||||
|
||||
void Regs_Init(void);
|
||||
void DebugCamera_ScreenText(u8 x, u8 y, const char* text);
|
||||
void DebugCamera_ScreenTextColored(u8 x, u8 y, u8 colorIndex, const char* text);
|
||||
#if DEBUG_FEATURES
|
||||
void Regs_UpdateEditor(struct Input* input);
|
||||
#endif
|
||||
void Debug_DrawText(struct GraphicsContext* gfxCtx);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue