14 lines
331 B
C
14 lines
331 B
C
|
|
// Define once
|
||
|
|
#ifndef H_MAINMENU
|
||
|
|
#define H_MAINMENU
|
||
|
|
|
||
|
|
// Libraries
|
||
|
|
#include "../app.h"
|
||
|
|
|
||
|
|
// Functions
|
||
|
|
void FP_Scene_Callback_MainMenu(void* context, uint32_t index);
|
||
|
|
void FP_Scene_Enter_MainMenu(void* context);
|
||
|
|
void FP_Scene_Exit_MainMenu(void* context);
|
||
|
|
bool FP_Scene_Event_MainMenu(void* context, SceneManagerEvent event);
|
||
|
|
|
||
|
|
#endif
|