14 lines
314 B
C
14 lines
314 B
C
|
|
// Define once
|
||
|
|
#ifndef H_SEND
|
||
|
|
#define H_SEND
|
||
|
|
|
||
|
|
// Libraries
|
||
|
|
#include "../app.h"
|
||
|
|
|
||
|
|
// Functions
|
||
|
|
void FP_Scene_Callback_Send(DialogExResult result, void* context);
|
||
|
|
void FP_Scene_Enter_Send(void* context);
|
||
|
|
void FP_Scene_Exit_Send(void* context);
|
||
|
|
bool FP_Scene_Event_Send(void* context, SceneManagerEvent event);
|
||
|
|
|
||
|
|
#endif
|