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 class Main: App(MainView::class){ val controller = Controller() }