pound-emu_pound/core/Base/Config.h
2025-06-18 18:30:21 +02:00

16 lines
283 B
C++

// Copyright 2025 Pound Emulator Project. All rights reserved.
#pragma once
#include <filesystem>
namespace Config {
void Load(const std::filesystem::path& path);
void Save(const std::filesystem::path& path);
bool isLogAdvanced();
std::string logType();
} // namespace Config