crosspoint-reader/src/screens/BootLogoScreen.h

9 lines
231 B
C
Raw Normal View History

2025-12-06 00:35:58 +11:00
#pragma once
#include "Screen.h"
class BootLogoScreen final : public Screen {
2025-12-06 01:37:20 +11:00
public:
explicit BootLogoScreen(GfxRenderer& renderer, InputManager& inputManager) : Screen(renderer, inputManager) {}
2025-12-06 00:35:58 +11:00
void onEnter() override;
};