mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
13 lines
233 B
C++
13 lines
233 B
C++
#ifndef APPS_EMPTY_BATTERY_WINDOW_H
|
|
#define APPS_EMPTY_BATTERY_WINDOW_H
|
|
|
|
#include <escher.h>
|
|
|
|
class EmptyBatteryWindow : public Window {
|
|
public:
|
|
EmptyBatteryWindow();
|
|
void drawRect(KDContext * ctx, KDRect rect) const;
|
|
};
|
|
|
|
#endif
|