020a7fd11d
change watch face from int to enum --------- Co-authored-by: minacode <minamoto9@web.de>
15 lines
241 B
C++
15 lines
241 B
C++
#pragma once
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
enum class WatchFace : uint8_t {
|
|
Digital = 0,
|
|
Analog = 1,
|
|
PineTimeStyle = 2,
|
|
Terminal = 3,
|
|
Infineat = 4,
|
|
CasioStyleG7710 = 5,
|
|
};
|
|
}
|
|
}
|