mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-10 09:34:40 -06:00
19 lines
415 B
C++
19 lines
415 B
C++
#pragma once
|
|
|
|
#include "PermanentStorage.h"
|
|
|
|
struct PermanentConfig
|
|
{
|
|
static constexpr const char* kFileName = "perm_setting.xml";
|
|
|
|
std::string custom_mlc_path;
|
|
|
|
[[nodiscard]] std::string ToXMLString() const noexcept;
|
|
static PermanentConfig FromXMLString(std::string_view str) noexcept;
|
|
|
|
// gets from permanent storage
|
|
static PermanentConfig Load();
|
|
// saves to permanent storage
|
|
bool Store() noexcept;
|
|
};
|