WarpPI/core/src/main/java/it/cavallium/warppi/event/KeyPressedEvent.java
2018-09-22 11:17:30 +02:00

17 lines
236 B
Java

package it.cavallium.warppi.event;
public class KeyPressedEvent implements KeyEvent {
private final Key k;
public KeyPressedEvent(final Key k) {
this.k = k;
}
@Override
public Key getKey() {
return k;
}
}