Skip to content
Snippets Groups Projects
Commit 75e29e9b authored by Tran Peter's avatar Tran Peter
Browse files

style(controller): clean up unused variables

parent 85199f0f
No related branches found
No related tags found
4 merge requests!74V1,!73Initial commit,!71Merge DataBase into Development,!4Merge UI into Development
package de.hdm_stuttgart.battlearena.Controller;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.geometry.Rectangle2D;
import javafx.scene.control.Button;
import javafx.scene.image.ImageView;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.Pane;
import javafx.scene.layout.VBox;
import javafx.stage.Screen;
import javafx.stage.Stage;
import java.net.URL;
import java.util.ResourceBundle;
public class MainMenuController {
@FXML
public VBox parent;
@FXML
public Button exitButton;
public static Pane center;
private final SceneLoader sceneLoader = new SceneLoader();
public void playScene() {
......
......@@ -35,7 +35,7 @@ public class MenuBorderPaneController implements Initializable {
public void easterEgg() {
btnRight.setOnMouseClicked(mouseEvent -> counter++);
if (counter == 5) {
if (counter == 4) {
// TODO: implement something stupid
System.out.println("monke");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment