mirror of
https://github.com/ndeadly/MissionControl
synced 2025-02-17 13:48:27 +00:00
19 lines
427 B
C++
19 lines
427 B
C++
#pragma once
|
|
#include "wiicontroller.hpp"
|
|
|
|
namespace controller {
|
|
|
|
class WiimoteController : public WiiController {
|
|
|
|
public:
|
|
static constexpr const HardwareID hardwareIds[] = {
|
|
{0x057e, 0x0306}, // Official wiimote
|
|
};
|
|
|
|
WiimoteController(const BluetoothAddress *address) : WiiController(address, ControllerType_Wiimote) {};
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
}
|