mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
* First pass of debug boot port * mostly done * general changes, test this comma in commit now * Makefile update: The "," works now * quotes also working now inside a string * get rid of emulator path * format * review * improvements (add skybox and improve print logic) * cleanup and fix build issues * format --------- Co-authored-by: Yanis002 <35189056+Yanis002@users.noreply.github.com>
17 lines
648 B
C
17 lines
648 B
C
#ifndef HELPERS_H
|
|
#define HELPERS_H
|
|
|
|
#include "z64.h"
|
|
#include "functions.h"
|
|
#include "config.h"
|
|
|
|
void Helpers_LoadDefinedScene(GameState* gameState);
|
|
void Helpers_LoadTitleScreen(GameState* gameState);
|
|
void Helpers_LoadFileSelect(GameState* gameState);
|
|
void Helpers_LoadMapSelect(GameState* gameState);
|
|
void Helpers_SetView(View* view, f32 eyeX, f32 eyeY, f32 eyeZ);
|
|
void Helpers_InitSkybox(GameState* gameState, EnvironmentContext* envCtx, SkyboxContext* skyboxCtx, s16 skyboxId);
|
|
void Helpers_DrawSkybox(GameState* gameState, View* view, EnvironmentContext* envCtx, SkyboxContext* skyboxCtx, s16 skyboxId, f32 eyeY, f32 angleIncrement);
|
|
|
|
#endif
|