Oberflächen Login und Hauptmenü für Mitarbeiter
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
package de.subway_surfers.vpr_app;
|
||||
|
||||
public class HauptmenueMitarbeiterView {
|
||||
}
|
@@ -11,8 +11,8 @@ public class HelloApplication extends Application {
|
||||
|
||||
@Override
|
||||
public void start(Stage stage) throws IOException {
|
||||
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));
|
||||
Scene scene = new Scene(fxmlLoader.load(), 320, 240);
|
||||
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("login-view.fxml"));
|
||||
Scene scene = new Scene(fxmlLoader.load(), 960, 540);
|
||||
stage.setTitle("Hello!");
|
||||
stage.setScene(scene);
|
||||
stage.show();
|
||||
|
4
src/main/java/de/subway_surfers/vpr_app/LoginView.java
Normal file
4
src/main/java/de/subway_surfers/vpr_app/LoginView.java
Normal file
@@ -0,0 +1,4 @@
|
||||
package de.subway_surfers.vpr_app;
|
||||
|
||||
public class LoginView {
|
||||
}
|
Reference in New Issue
Block a user