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

17 lines
226 B
Java
Raw Normal View History

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