From 17783cb591ed4a6fc1dcfc8620896f92b92642ad Mon Sep 17 00:00:00 2001 From: Sebastian Lenzlinger Date: Thu, 14 Apr 2022 14:02:27 +0200 Subject: [PATCH] Merged Onto Master --- .../multiplayer/client/gui/chat/ChatApp.java | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/main/java/ch/unibas/dmi/dbis/cs108/multiplayer/client/gui/chat/ChatApp.java diff --git a/src/main/java/ch/unibas/dmi/dbis/cs108/multiplayer/client/gui/chat/ChatApp.java b/src/main/java/ch/unibas/dmi/dbis/cs108/multiplayer/client/gui/chat/ChatApp.java new file mode 100644 index 0000000..e500f19 --- /dev/null +++ b/src/main/java/ch/unibas/dmi/dbis/cs108/multiplayer/client/gui/chat/ChatApp.java @@ -0,0 +1,29 @@ +package ch.unibas.dmi.dbis.cs108.multiplayer.client.gui.chat; + +import javafx.application.Application; +import javafx.stage.Stage; + +public class ChatApp extends Application { + + /** + * The main entry point for all JavaFX applications. The start method is called after the init + * method has returned, and after the system is ready for the application to begin running. + * + *

+ * NOTE: This method is called on the JavaFX Application Thread. + *

+ * + * @param primaryStage the primary stage for this application, onto which the application scene + * can be set. Applications may create other stages, if needed, but they will + * not be primary stages. + * @throws Exception if something goes wrong + */ + @Override + public void start(Stage primaryStage) throws Exception { + + } + + public static void main(String[] args){ + + } +}