This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/project/ui/scenes/view.h
2024-09-08 21:13:58 -04:00

14 lines
No EOL
311 B
C

// Define once
#ifndef H_S_VIEW
#define H_S_VIEW
// Libraries
#include "../app.h"
// Functions
void FP_Scene_Callback_View(void* context, uint32_t index);
void FP_Scene_Enter_View(void* context);
void FP_Scene_Exit_View(void* context);
bool FP_Scene_Event_View(void* context, SceneManagerEvent event);
#endif