mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-11 06:09:08 -07:00
17 lines
700 B
C
17 lines
700 B
C
#ifndef _SCENE_DIRECTOR_H_
|
|
#define _SCENE_DIRECTOR_H_
|
|
|
|
#include <gui/gui.h>
|
|
#include "../types/plugin_state.h"
|
|
#include "../types/plugin_event.h"
|
|
#include "totp_scenes_enum.h"
|
|
|
|
void totp_scene_director_activate_scene(PluginState* const plugin_state, Scene scene, const void* context);
|
|
void totp_scene_director_deactivate_active_scene(PluginState* const plugin_state);
|
|
void totp_scene_director_init_scenes(PluginState* const plugin_state);
|
|
void totp_scene_director_render(Canvas* const canvas, PluginState* const plugin_state);
|
|
void totp_scene_director_dispose(PluginState* const plugin_state);
|
|
bool totp_scene_director_handle_event(PluginEvent* const event, PluginState* const plugin_state);
|
|
|
|
#endif
|