pound-emu_pound/core/common/Config.h
Ronald Caesar 05c4f7025f Major project restructuring
Remove unecessary files and made the tree much more cleaner.

Signed-off-by: Ronald Caesar <github43132@proton.me>
2025-08-23 17:23:33 -04:00

21 lines
325 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);
int windowWidth();
int windowHeight();
bool isLogAdvanced();
std::string logType();
} // namespace Config