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