mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-15 19:35:26 +00:00
9 lines
189 B
C
9 lines
189 B
C
|
#pragma once
|
||
|
#include <filesystem>
|
||
|
|
||
|
namespace Config {
|
||
|
void load(const std::filesystem::path& path);
|
||
|
void save(const std::filesystem::path& path);
|
||
|
|
||
|
bool isNeoMode();
|
||
|
}; // namespace Config
|