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

17 lines
475 B
C++

#pragma once
#include "../background/IThemeBackground.h"
#include "MaterialColorScheme.h"
class MaterialSubBackground : public IThemeBackground
{
public:
explicit MaterialSubBackground(const MaterialColorScheme* materialColorScheme)
: _materialColorScheme(materialColorScheme) { }
void LoadResources(const ITheme& theme, const VramContext& vramContext) override;
void VBlank() override;
private:
const MaterialColorScheme* _materialColorScheme;
};