package seng302.gameController.Keys; import javafx.scene.input.KeyCode; /** * Key to zoom out of the game. */ public class ZoomOutKey extends ControlKey{ /** * Constructor for Control * * @param name name of the key * @param keyCode key code for the key */ public ZoomOutKey(String name, KeyCode keyCode) { super(name, keyCode); } @Override public void onAction() { } }