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