mirror of
https://github.com/ndeadly/MissionControl
synced 2024-12-14 14:52:36 +00:00
18 lines
454 B
C++
18 lines
454 B
C++
#pragma once
|
|
#include "switchcontroller.hpp"
|
|
|
|
namespace ams::controller {
|
|
|
|
class SwitchProController : public SwitchController {
|
|
|
|
public:
|
|
static constexpr const HardwareID hardwareIds[] = {
|
|
{0x057e, 0x2009} // Official Switch Pro Controller
|
|
};
|
|
|
|
SwitchProController(const bluetooth::Address *address)
|
|
: SwitchController(ControllerType_SwitchPro, address) { };
|
|
|
|
};
|
|
|
|
}
|