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