You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
21 lines
604 B
C++
21 lines
604 B
C++
#pragma once
|
|
#include "fat/ff.h"
|
|
#include "core/String.h"
|
|
#include "ITheme.h"
|
|
|
|
class Theme : public ITheme
|
|
{
|
|
public:
|
|
bool OpenThemeFile(File& file, const TCHAR* subPath) const override;
|
|
void LoadRomBrowserResources(const VramContext& mainVramContext, const VramContext& subVramContext) override { };
|
|
const MaterialColorScheme& GetMaterialColorScheme() const override { return _materialColorScheme; }
|
|
|
|
protected:
|
|
Theme(const TCHAR* folderName, const Rgb<8, 8, 8>& primaryColor, bool darkMode);
|
|
|
|
MaterialColorScheme _materialColorScheme;
|
|
|
|
private:
|
|
String<TCHAR, 64> _folderName;
|
|
};
|