mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 16:49:12 +01:00
cc7c410cf1
They are separated into 3 groups and will only be shown in the input config dialog if the emulator was in debug mode.
15 lines
401 B
C++
15 lines
401 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "DolphinWX/Input/InputConfigDiag.h"
|
|
|
|
class HotkeyInputConfigDialog final : public InputConfigDialog
|
|
{
|
|
public:
|
|
HotkeyInputConfigDialog(wxWindow* parent, InputConfig& config, const wxString& name,
|
|
bool using_debugger, int port_num = 0);
|
|
};
|