mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-12 18:48:35 -07:00
15 lines
195 B
C
15 lines
195 B
C
#pragma once
|
|
|
|
#include <gui/view_dispatcher.h>
|
|
|
|
#include "scenes/_setup.h"
|
|
|
|
enum {
|
|
ViewMain,
|
|
};
|
|
|
|
typedef struct {
|
|
ViewDispatcher* view_dispatcher;
|
|
SceneManager* scene_manager;
|
|
} Ctx;
|