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

14 lines
307 B
C
Raw Normal View History

2024-09-08 20:12:29 -05:00
// Define once
#ifndef H_VIEW
#define H_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