mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 12:53:17 +00:00
19 lines
392 B
C++
19 lines
392 B
C++
#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:
|
|
|
|
};
|
|
|
|
}
|