mirror of
https://github.com/ndeadly/MissionControl
synced 2024-12-12 13:52:35 +00:00
19 lines
461 B
C++
19 lines
461 B
C++
#pragma once
|
|
#include "wiicontroller.hpp"
|
|
|
|
namespace ams::controller {
|
|
|
|
class WiimoteController : public WiiController {
|
|
|
|
public:
|
|
static constexpr const HardwareID hardwareIds[] = {
|
|
{0x057e, 0x0306}, // Official wiimote
|
|
};
|
|
|
|
WiimoteController(const bluetooth::Address *address)
|
|
: WiiController(ControllerType_Wiimote, address) { };
|
|
|
|
Result initialize(void);
|
|
};
|
|
|
|
}
|