mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2025-12-05 13:16:06 +01:00
15 lines
371 B
C++
15 lines
371 B
C++
#pragma once
|
|
#include <memory>
|
|
#include "ThemeInfo.h"
|
|
|
|
class ThemeInfoFactory
|
|
{
|
|
public:
|
|
std::unique_ptr<ThemeInfo> CreateFromThemeFolder(const TCHAR* folderName) const;
|
|
|
|
std::unique_ptr<ThemeInfo> CreateFallbackTheme() const
|
|
{
|
|
return std::make_unique<ThemeInfo>("", ThemeType::Material, "Fallback", "", "", Rgb<8,8,8>(138, 217, 255), false);
|
|
}
|
|
};
|