28 lines
604 B
C
28 lines
604 B
C
|
// Copyright 2019 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2+
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "Common/IniFile.h"
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace InputCommon
|
||
|
{
|
||
|
class DynamicInputTextureConfiguration;
|
||
|
class DynamicInputTextureManager
|
||
|
{
|
||
|
public:
|
||
|
DynamicInputTextureManager();
|
||
|
~DynamicInputTextureManager();
|
||
|
void Load();
|
||
|
void GenerateTextures(const IniFile::Section* sec, const std::string& controller_name);
|
||
|
|
||
|
private:
|
||
|
std::vector<DynamicInputTextureConfiguration> m_configuration;
|
||
|
std::string m_config_type;
|
||
|
};
|
||
|
} // namespace InputCommon
|