Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
b37916134a
Binary file not shown.
@ -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.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* NOTE: This method is called on the JavaFX Application Thread.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* @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){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user