2024-02-23 21:32:32 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
2023-08-14 17:17:01 +00:00
|
|
|
#pragma once
|
2024-02-23 21:32:32 +00:00
|
|
|
|
2023-08-14 17:17:01 +00:00
|
|
|
#include <filesystem>
|
2023-11-05 11:41:10 +00:00
|
|
|
#include "common/types.h"
|
2023-08-14 17:17:01 +00:00
|
|
|
|
|
|
|
namespace Config {
|
|
|
|
void load(const std::filesystem::path& path);
|
|
|
|
void save(const std::filesystem::path& path);
|
|
|
|
|
|
|
|
bool isNeoMode();
|
2023-08-16 07:34:04 +00:00
|
|
|
u32 getLogLevel();
|
|
|
|
|
|
|
|
u32 getScreenWidth();
|
|
|
|
u32 getScreenHeight();
|
|
|
|
|
2024-02-23 20:57:57 +00:00
|
|
|
}; // namespace Config
|