Пример #1
0
 public XboxInputRequestHandler(CloseFunction closeFunction, SenderFunction senderFunction, XboxDevice device, EmulatedControllersService emulatedControllersService, DeviceDisconnectedEventHandler disconnectedEventHandler) : base(closeFunction, senderFunction)
 {
     this.device = device;
     this.emulatedControllersService = emulatedControllersService;
     this.disconnectedEventHandler   = disconnectedEventHandler;
     device.FeedbackEvent           += FeedbackEvent;
 }
Пример #2
0
 public Ds4WebSocketHandler(EmulatorService emulatorService, EmulatedControllersService emulatedControllersService)
 {
     this.emulatorService            = emulatorService;
     this.emulatedControllersService = emulatedControllersService;
 }
Пример #3
0
 public EmulatedControllersController(EmulatedControllersService networkDeviceInfoService, EmulatorService emulatorService)
 {
     this.emulatedControllersService = networkDeviceInfoService;
     this.emulatorService            = emulatorService;
 }