mirror of
https://github.com/pound-emu/pound.git
synced 2025-06-22 22:48:09 -04:00
20 lines
324 B
C++
20 lines
324 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
|