mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-06 21:44:20 -05:00
It just confuses DolphinBar users and isn't relevant these days now that Windows users do not use alternative Bluetooth stacks.
21 lines
335 B
C++
21 lines
335 B
C++
// Copyright 2025 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
class WiimoteControllersWidget;
|
|
|
|
class ControllersPane final : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ControllersPane();
|
|
|
|
private:
|
|
void CreateMainLayout();
|
|
|
|
WiimoteControllersWidget* m_wiimote_controllers;
|
|
};
|