2020-04-17 11:45:30 +02:00
|
|
|
package ihm;
|
|
|
|
|
2020-04-18 22:16:49 +02:00
|
|
|
|
2020-04-17 11:45:30 +02:00
|
|
|
import javafx.application.Application;
|
|
|
|
import javafx.fxml.FXMLLoader;
|
|
|
|
import javafx.scene.Parent;
|
|
|
|
import javafx.scene.Scene;
|
|
|
|
import javafx.stage.Stage;
|
|
|
|
|
|
|
|
public class Main extends Application{
|
|
|
|
@Override
|
|
|
|
public void start(Stage primaryStage) throws Exception{
|
|
|
|
Parent root = FXMLLoader.load(getClass().getResource("ressources/Menu.fxml"));
|
|
|
|
primaryStage.setTitle("Shadow Hunters");
|
|
|
|
primaryStage.setScene(new Scene(root));
|
|
|
|
primaryStage.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
launch(args);
|
|
|
|
}
|
2020-04-18 22:16:49 +02:00
|
|
|
|
|
|
|
|
2020-04-17 11:45:30 +02:00
|
|
|
}
|