restructure folder

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-06-12 20:21:53 +02:00
parent 5e2456f4b8
commit e487b8357a
25 changed files with 7 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "MenuOptions.h"
#include "common/Widget.h"
class SplashScreen final : public Widget
{
public:
explicit SplashScreen(menu_options_t *options);
void update(uint64_t dt) override;
void render() override;
private:
menu_options_t *m_options;
};