Files
pico-launcher/arm9/source/themes/material/MaterialMainBackground.h
2025-11-25 17:41:31 +01:00

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;
};