/* * This Kotlin source file was generated by the Gradle 'init' task. */ package xyz.brysonsteck.serverfordummies import javafx.application.Application; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.stage.Stage; class App : Application() { override fun start(stage: Stage) { var scene = Scene(loadFXML("primary"), 1500.0, 900.0) stage.title = "Server For Dummies" stage.scene = scene stage.show() } private fun loadFXML(fxml: String) : Parent { val fxmlLoader = FXMLLoader(this.javaClass.getResource(fxml + ".fxml")) return fxmlLoader.load() } public fun run() { launch() } }