mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-26 03:39:58 -07:00
13 lines
206 B
C
13 lines
206 B
C
#pragma once
|
|
|
|
#include <gui/icon.h>
|
|
#include <m-list.h>
|
|
|
|
typedef struct {
|
|
const char* name;
|
|
const char* path;
|
|
const Icon* icon;
|
|
} ExtMainApp;
|
|
|
|
LIST_DEF(ExtMainAppList, ExtMainApp, M_POD_OPLIST)
|