dolphin/Source/Core/DolphinQt/Config/Mapping/GCPadEmu.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
407 B
C
Raw Normal View History

2017-05-20 15:53:17 +00:00
// Copyright 2017 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2017-05-20 15:53:17 +00:00
2017-07-26 20:31:58 +00:00
#pragma once
2018-07-06 22:40:15 +00:00
#include "DolphinQt/Config/Mapping/MappingWidget.h"
2017-05-20 15:53:17 +00:00
class GCPadEmu final : public MappingWidget
{
Q_OBJECT
2017-05-20 15:53:17 +00:00
public:
explicit GCPadEmu(MappingWindow* window);
InputConfig* GetConfig() override;
private:
void LoadSettings() override;
void SaveSettings() override;
void CreateMainLayout();
};