mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 00:56:55 +02:00
17 lines
501 B
C++
17 lines
501 B
C++
#pragma once
|
|
#include "../background/IThemeBackground.h"
|
|
|
|
class MaterialColorScheme;
|
|
|
|
class MaterialMainBackground : public IThemeBackground
|
|
{
|
|
public:
|
|
explicit MaterialMainBackground(const MaterialColorScheme* materialColorScheme)
|
|
: _materialColorScheme(materialColorScheme) { }
|
|
|
|
void Draw(GraphicsContext& graphicsContext) override;
|
|
void LoadResources(const ITheme& theme, const VramContext& vramContext) override;
|
|
|
|
private:
|
|
const MaterialColorScheme* _materialColorScheme;
|
|
}; |