Files
d4rks1d33 ad4c171054
Build Dev Firmware / build (push) Failing after 14m40s
A lot of changes
2026-06-02 23:32:16 -03:00

14 lines
365 B
C

#include "scene_management.h"
#include <gui/gui.h>
#include <stdbool.h>
extern const int EXCEPTION_SCENE_ID;
void throw_exception(const char* message);
void throw_exception_if(bool condition, const char* message);
bool exception_manager_has_exception();
const char* get_exception_message();
void exception_manager_handle_exceptions(SceneManager* sceneManager);