mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
18 lines
350 B
C
18 lines
350 B
C
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
|
|
#include <gui/gui.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <gui/modules/variable_item_list.h>
|
|
|
|
typedef struct {
|
|
Gui* gui;
|
|
ViewDispatcher* view_dispatcher;
|
|
VariableItemList* var_item_list;
|
|
} SystemSettings;
|
|
|
|
typedef enum {
|
|
SystemSettingsViewVarItemList,
|
|
} SystemSettingsView;
|