mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-02 23:08:05 +03:00
20 lines
528 B
C++
20 lines
528 B
C++
// Copyright 2022 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "Common/Config/Config.h"
|
|
|
|
enum class WiimoteSource;
|
|
|
|
namespace Config
|
|
{
|
|
extern const Info<WiimoteSource> WIIMOTE_1_SOURCE;
|
|
extern const Info<WiimoteSource> WIIMOTE_2_SOURCE;
|
|
extern const Info<WiimoteSource> WIIMOTE_3_SOURCE;
|
|
extern const Info<WiimoteSource> WIIMOTE_4_SOURCE;
|
|
extern const Info<WiimoteSource> WIIMOTE_BB_SOURCE;
|
|
|
|
const Info<WiimoteSource>& GetInfoForWiimoteSource(int index);
|
|
|
|
} // namespace Config
|