mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-29 19:37:13 -05:00
15 lines
550 B
C++
15 lines
550 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "Common/Config/Config.h"
|
|
|
|
std::unique_ptr<Config::ConfigLayerLoader> GenerateGlobalGameConfigLoader(const std::string& id,
|
|
u16 revision);
|
|
std::unique_ptr<Config::ConfigLayerLoader> GenerateLocalGameConfigLoader(const std::string& id,
|
|
u16 revision);
|