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.

22 lines
430 B
C
Raw Normal View History

2017-05-20 09:53:17 -06:00
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
2017-07-26 14:31:58 -06:00
#pragma once
2018-07-06 16:40:15 -06:00
#include "DolphinQt/Config/Mapping/MappingWidget.h"
2017-05-20 09:53:17 -06:00
class GCPadEmu final : public MappingWidget
{
Q_OBJECT
2017-05-20 09:53:17 -06:00
public:
explicit GCPadEmu(MappingWindow* window);
InputConfig* GetConfig() override;
private:
void LoadSettings() override;
void SaveSettings() override;
void CreateMainLayout();
};