mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
Initial commit
This commit is contained in:
14
arm9/source/themes/ThemeInfoFactory.h
Normal file
14
arm9/source/themes/ThemeInfoFactory.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#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);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user