mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-29 05:22:30 +02:00
18 lines
291 B
C++
18 lines
291 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace Config
|
|
{
|
|
class ConfigLayerLoader;
|
|
}
|
|
|
|
namespace ConfigLoaders
|
|
{
|
|
std::unique_ptr<Config::ConfigLayerLoader> GenerateBaseConfigLoader();
|
|
}
|