WarpPI/src/main/java/org/warp/picalculator/device/InputManager.java

21 lines
408 B
Java
Raw Normal View History

package org.warp.picalculator.device;
public class InputManager {
private final Keyboard keyboard;
private final HardwareTouchDevice touchDevice;
2018-08-28 02:39:41 +02:00
public InputManager(Keyboard k, HardwareTouchDevice t) {
this.keyboard = k;
this.touchDevice = t;
}
public Keyboard getKeyboard() {
return keyboard;
}
public HardwareTouchDevice getTouchDevice() {
return touchDevice;
}
2018-08-28 02:39:41 +02:00
}