mirror of
https://github.com/pound-emu/pound.git
synced 2025-12-12 01:36:57 +00:00
Import Strong Logger & Config System
This commit is contained in:
parent
92d4e7a8d3
commit
014b236228
48 changed files with 3281 additions and 734 deletions
16
core/Base/Config.h
Normal file
16
core/Base/Config.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue