diff --git a/src/main/kotlin/me/mestima/zomboidmodscopier/ZomboidCopier.kt b/src/main/kotlin/me/mestima/zomboidmodscopier/ZomboidCopier.kt index d3127ce..0853927 100644 --- a/src/main/kotlin/me/mestima/zomboidmodscopier/ZomboidCopier.kt +++ b/src/main/kotlin/me/mestima/zomboidmodscopier/ZomboidCopier.kt @@ -5,9 +5,9 @@ import javafx.fxml.FXMLLoader import javafx.scene.Scene import javafx.stage.Stage -class HelloApplication : Application() { +class ZomboidCopier : Application() { override fun start(stage: Stage) { - val fxmlLoader = FXMLLoader(HelloApplication::class.java.getResource("main.fxml")) + val fxmlLoader = FXMLLoader(ZomboidCopier::class.java.getResource("main.fxml")) val scene = Scene(fxmlLoader.load(), 483.0, 281.0) stage.title = "Zomboid mods copier v1.0" stage.scene = scene @@ -16,5 +16,5 @@ class HelloApplication : Application() { } fun main() { - Application.launch(HelloApplication::class.java) + Application.launch(ZomboidCopier::class.java) } \ No newline at end of file