2020-03-02 15:37:11 +00:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
|
|
******************************************************************************
|
|
|
|
* Copyright 2020 Ben Vanik. All rights reserved. *
|
|
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
|
|
|
|
2019-04-17 19:40:31 +00:00
|
|
|
#ifndef XENIA_CONFIG_H_
|
|
|
|
#define XENIA_CONFIG_H_
|
2020-03-02 15:37:11 +00:00
|
|
|
|
|
|
|
#include <filesystem>
|
2019-04-17 19:40:31 +00:00
|
|
|
|
|
|
|
namespace config {
|
2020-03-02 15:37:11 +00:00
|
|
|
void SetupConfig(const std::filesystem::path& config_folder);
|
|
|
|
void LoadGameConfig(const std::string_view title_id);
|
2019-04-17 19:40:31 +00:00
|
|
|
} // namespace config
|
|
|
|
|
|
|
|
#endif // XENIA_CONFIG_H_
|