You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
376 B

package visualiser.gameController.Keys;
import javafx.scene.input.KeyCode;
/**
* key to zoom into the game
*/
public class ZoomInKey extends ControlKey {
public ZoomInKey(String name) {
super(name);
}
@Override
public void onAction() {
}
@Override
public void onHold() {
}
@Override
public void onRelease() {
}
}