blob: 9bc43c47de3d214a6f5c01707b81d6cefa348391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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_
|