2020-03-14 11:33:47 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
class BatteryIcon {
|
|
|
|
public:
|
2020-07-04 07:58:15 -04:00
|
|
|
static const char* GetUnknownIcon();
|
|
|
|
static const char* GetBatteryIcon(float batteryPercent);
|
|
|
|
static const char* GetPlugIcon(bool isCharging);
|
2020-03-14 11:33:47 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|