mirror of
https://github.com/firewalkwithm3/Sensor-Watch.git
synced 2024-11-22 19:20:30 +08:00
20 lines
374 B
C
20 lines
374 B
C
#ifndef LAUNCHER_CONFIG_H_
|
|
#define LAUNCHER_CONFIG_H_
|
|
|
|
#include "simple_clock_widget.h"
|
|
#include "preferences_widget.h"
|
|
#include "fake_widget_1.h"
|
|
#include "fake_widget_2.h"
|
|
|
|
#define LAUNCHER_NUM_WIDGETS 4
|
|
|
|
WatchWidget widgets[LAUNCHER_NUM_WIDGETS] = {
|
|
simple_clock_widget,
|
|
preferences_widget,
|
|
fake_widget_1,
|
|
fake_widget_2,
|
|
};
|
|
|
|
|
|
#endif // LAUNCHER_CONFIG_H_
|