WarpPI/core/src/main/java/it/cavallium/warppi/event/KeyPressedEvent.java

17 lines
224 B
Java
Raw Normal View History

package it.cavallium.warppi.event;
public class KeyPressedEvent implements KeyEvent {
private Key k;
2018-08-28 02:39:41 +02:00
public KeyPressedEvent(Key k) {
this.k = k;
}
2018-08-28 02:39:41 +02:00
@Override
public Key getKey() {
return k;
}
}