mirror of
https://github.com/Mestima/ZomboidModsCopier.git
synced 2025-05-06 00:00:23 +00:00
main class name changed
This commit is contained in:
parent
f3878e7feb
commit
7571aafdb8
@ -5,9 +5,9 @@ import javafx.fxml.FXMLLoader
|
|||||||
import javafx.scene.Scene
|
import javafx.scene.Scene
|
||||||
import javafx.stage.Stage
|
import javafx.stage.Stage
|
||||||
|
|
||||||
class HelloApplication : Application() {
|
class ZomboidCopier : Application() {
|
||||||
override fun start(stage: Stage) {
|
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)
|
val scene = Scene(fxmlLoader.load(), 483.0, 281.0)
|
||||||
stage.title = "Zomboid mods copier v1.0"
|
stage.title = "Zomboid mods copier v1.0"
|
||||||
stage.scene = scene
|
stage.scene = scene
|
||||||
@ -16,5 +16,5 @@ class HelloApplication : Application() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun main() {
|
fun main() {
|
||||||
Application.launch(HelloApplication::class.java)
|
Application.launch(ZomboidCopier::class.java)
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user