14 lines
311 B
C++
14 lines
311 B
C++
#pragma once
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Screens {
|
|
class BatteryIcon {
|
|
public:
|
|
static const char* GetUnknownIcon();
|
|
static const char* GetBatteryIcon(int batteryPercent);
|
|
static const char* GetPlugIcon(bool isCharging);
|
|
};
|
|
}
|
|
}
|
|
} |