mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 17:23:25 +00:00
21 lines
413 B
C
21 lines
413 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <gui/gui.h>
|
||
|
#include <gui/view_dispatcher.h>
|
||
|
#include <gui/scene_manager.h>
|
||
|
|
||
|
#include "scenes/fuzzer_scene.h"
|
||
|
#include "views/main_menu.h"
|
||
|
|
||
|
#include "helpers/fuzzer_types.h"
|
||
|
|
||
|
#include <flipper_format/flipper_format_i.h>
|
||
|
|
||
|
typedef struct {
|
||
|
Gui* gui;
|
||
|
ViewDispatcher* view_dispatcher;
|
||
|
SceneManager* scene_manager;
|
||
|
FuzzerViewMain* main_view;
|
||
|
|
||
|
} PacsFuzzerApp;
|