Example #1
0
 public DesktopInputManager(IJoystickInput joystickInput, IKeyboardInput keyboardInput, IMouseScreenInput mouseScreenInput, IControlManager controlManager)
 {
     this.joystickInput    = joystickInput;
     this.keyboardInput    = keyboardInput;
     this.mouseScreenInput = mouseScreenInput;
     this.controlManager   = controlManager;
 }
 public WindowsInputFactory(IJoystickInput joystickInput, IKeyboardInput keyboardInput, IMouseScreenInput mouseScreenInput)
 {
     JoystickInput    = joystickInput;
     KeyboardInput    = keyboardInput;
     MouseScreenInput = mouseScreenInput;
 }
Example #3
0
 public InputManager(IJoystickInput joystickInput, IKeyboardInput keyboardInput, IMouseScreenInput mouseScreenInput)
 {
     this.joystickInput    = joystickInput;
     this.keyboardInput    = keyboardInput;
     this.mouseScreenInput = mouseScreenInput;
 }