Files
HackerOoT/include/helpers.h
Trueffel 64bd859db4 Debug Boot (DebugOpeningState) (#136)
* 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>
2025-01-02 18:14:50 +01:00

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