MissionControl/btdrv-mitm/source/controllers/fakeswitchcontroller.hpp

20 lines
392 B
C++
Raw Normal View History

#pragma once
#include "switchcontroller.hpp"
namespace ams::controller {
class FakeSwitchController : public SwitchController {
public:
FakeSwitchController(ControllerType type, const bluetooth::Address *address)
: SwitchController(type, address) {};
//readHidData();
//writeHidData();
private:
};
}