mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2025-12-18 23:27:44 +03:00
12 lines
320 B
C++
12 lines
320 B
C++
#pragma once
|
|
#include "SD.h"
|
|
#include "Screen.h"
|
|
|
|
class SleepScreen final : public Screen {
|
|
public:
|
|
explicit SleepScreen(GfxRenderer& renderer, InputManager& inputManager) : Screen(renderer, inputManager) {}
|
|
void onEnter() override;
|
|
void renderDefaultSleepScreen();
|
|
void renderCustomSleepScreen(File& file);
|
|
};
|