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
17 lines
437 B
C++
17 lines
437 B
C++
#pragma once
|
|
#include <memory>
|
|
#include "core/String.h"
|
|
#include "RomBrowserDisplaySettings.h"
|
|
#include "FileAssociation.h"
|
|
|
|
class AppSettings
|
|
{
|
|
public:
|
|
String<char, 16> language = "english";
|
|
String<char, 64> theme = "material";
|
|
String<char, 256> lastUsedFilePath = "";
|
|
RomBrowserDisplaySettings romBrowserDisplaySettings;
|
|
|
|
std::unique_ptr<FileAssociation[]> fileAssociations;
|
|
u32 numberOfFileAssociations = 0;
|
|
}; |