TextureSync/client/src/main/kotlin/org/hso/texturesyncclient/app/Main.kt

13 lines
373 B
Kotlin
Raw Normal View History

package org.hso.texturesyncclient.app
import org.hso.texturesyncclient.controller.Controller
import org.hso.texturesyncclient.view.importView.ImportView
import org.hso.texturesyncclient.view.mainView.MainView
import org.hso.texturesyncclient.view.startupView.StartupView
import tornadofx.App
2019-06-03 16:46:57 +02:00
class Main: App(ImportView::class){
2019-06-03 16:46:57 +02:00
//val controller = Controller()
}