Datasets:
ArXiv:
License:
File size: 675 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
package battleship;
import battleship.Utils.Settings;
import java.io.IOException;
import battleship.gui.MenuGUI;
import battleship.Networking.*;
import javafx.application.Application;
import javafx.stage.Stage;
public class BattleShip extends Application {
public static boolean quit = false;
@Override
public void start(Stage primaryStage) {
MenuGUI menuGUI = new MenuGUI();
}
public static void main(String[] args) throws IOException{
Settings settings = Settings.getInstance();
ServerManager serverManager = ServerManager.getInstance();
launch(args);
BattleShip.quit = true;
}
}
|