Files
crosspoint-reader-mod/src/screens/SleepScreen.h
2025-12-06 04:20:41 +11:00

9 lines
183 B
C++

#pragma once
#include "Screen.h"
class SleepScreen final : public Screen {
public:
explicit SleepScreen(EpdRenderer* renderer) : Screen(renderer) {}
void onEnter() override;
};