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:
|
2025-12-06 12:56:39 +11:00
|
|
|
explicit BootLogoScreen(EpdRenderer& renderer, InputManager& inputManager) : Screen(renderer, inputManager) {}
|
2025-12-06 00:35:58 +11:00
|
|
|
void onEnter() override;
|
|
|
|
|
};
|