Import Strong Logger & Config System

This commit is contained in:
Xphalnos 2025-06-18 18:07:20 +02:00
parent 92d4e7a8d3
commit 014b236228
48 changed files with 3281 additions and 734 deletions

16
core/Base/Config.h Normal file
View file

@ -0,0 +1,16 @@
// 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