diff --git a/README.md b/README.md index b8171ce..5d7a1b3 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ Currently, only a single character is playable. However, the engine allows for e Set your preferences in the launcher window, plug-in two DirectInput or XInput capable controllers in your computer, and press start! Use the left analog stick or the D-Pad to move, and the four face buttons for kick and punch, neo-geo style. +![Launcher screenshot](docs/launcher_screenshot.png) + Blue, the main character, knows some advanced martial arts techniques, which can be unlocked through special combinaisons ;). ## How to install / build? diff --git a/docs/launcher_screenshot.png b/docs/launcher_screenshot.png new file mode 100644 index 0000000..f01c252 Binary files /dev/null and b/docs/launcher_screenshot.png differ diff --git a/src/main/java/launcher/Launcher.java b/src/main/java/launcher/Launcher.java index 06977c6..de4b836 100644 --- a/src/main/java/launcher/Launcher.java +++ b/src/main/java/launcher/Launcher.java @@ -153,13 +153,15 @@ public class Launcher extends Application { /*******************/ // Removing window decorations - // primaryStage.initStyle(StageStyle.UNDECORATED); + primaryStage.initStyle(StageStyle.UNDECORATED); // Setting the window as unresizeable primaryStage.setResizable(false); // Setting window title primaryStage.setTitle("Boulevard Combattant"); // Assinging main scene to primaryStage primaryStage.setScene(main); + // Adding icon to taskbar + primaryStage.getIcons().add(new Image(Launcher.class.getResourceAsStream("logo.png"))); // Showing the stage to the user primaryStage.show();