mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 12:53:17 +00:00
17 lines
437 B
C++
17 lines
437 B
C++
#pragma once
|
|
#include "wiicontroller.hpp"
|
|
|
|
namespace ams::controller {
|
|
|
|
class WiiUProController : public WiiController {
|
|
|
|
public:
|
|
static constexpr const HardwareID hardwareIds[] = {
|
|
{0x057e, 0x0330}, // Official Wii U Pro Controller
|
|
};
|
|
|
|
WiiUProController(const bluetooth::Address *address)
|
|
: WiiController(ControllerType_WiiUPro, address) { };
|
|
};
|
|
|
|
}
|