GameEngine/include/engine.h
Emilia(SleepeeSoftware) 9832374861 moving forward
2026-02-19 17:52:40 +01:00

25 lines
338 B
C

#ifndef ENGINE_H
# define ENGINE_H
#include <struct.h>
#include <render.h>
# ifndef ENGINE_PROTOTYPE
# define ENGINE_PROTOTYPE
//Render
void LoadPipeline();
void UnloadPipeline();
//UI
void UserInterface(const Player *player);
//void Menu();
void EngineStateSwitch(ENGINE_STATE_E engine_state);
# endif
//other stuff here
#endif