More updates (thanks grnch!)

This commit is contained in:
UberGuidoZ
2022-12-28 22:30:12 -08:00
parent 74236940d7
commit 034d4cd172
1153 changed files with 103961 additions and 0 deletions
@@ -0,0 +1,22 @@
#ifndef __APP_H__
#define __APP_H__
#include <furi.h>
#include <gui/gui.h>
#include <gui/view_dispatcher.h>
// app
typedef struct {
Gui* gui; // gui object
ViewDispatcher* view_dispatcher; // view dispacther of the gui
// views
CountDownTimView* helloworld_view;
} CountDownTimerApp;
CountDownTimerApp* countdown_app_new(void);
void countdown_app_delete(CountDownTimerApp* app);
void countdown_app_run(CountDownTimerApp* app);
#endif