shadPS4/src/Util/config.h

15 lines
274 B
C
Raw Normal View History

2023-08-14 19:17:01 +02:00
#pragma once
#include <filesystem>
2023-08-16 09:34:04 +02:00
#include <types.h>
2023-08-14 19:17:01 +02:00
namespace Config {
void load(const std::filesystem::path& path);
void save(const std::filesystem::path& path);
bool isNeoMode();
2023-08-16 09:34:04 +02:00
u32 getLogLevel();
u32 getScreenWidth();
u32 getScreenHeight();
2023-08-14 19:17:01 +02:00
}; // namespace Config