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

17 lines
224 B
Java

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