created client packages
created basic client classes
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
package org.hso.texturesyncclient.app
|
||||
|
||||
import org.hso.texturesyncclient.view.startupView.StartupView
|
||||
import tornadofx.App
|
||||
|
||||
class Main: App(StartupView::class){
|
||||
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package org.hso.texturesyncclient.controller
|
||||
|
||||
class Controller {
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,8 @@
|
||||
package org.hso.texturesyncclient.controller
|
||||
|
||||
class NetworkController {
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package org.hso.texturesyncclient.view.importView
|
||||
|
||||
import javafx.scene.Parent
|
||||
import tornadofx.*
|
||||
|
||||
class ImportView : View() {
|
||||
|
||||
override val root: Parent
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
package org.hso.texturesyncclient.view.importView
|
||||
|
||||
import tornadofx.Controller
|
||||
|
||||
class ImportViewController : Controller() {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package org.hso.texturesyncclient.view.mainView
|
||||
|
||||
import javafx.scene.Parent
|
||||
import tornadofx.*
|
||||
|
||||
class MainView : View() {
|
||||
|
||||
|
||||
override val root: Parent
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
package org.hso.texturesyncclient.view.mainView
|
||||
|
||||
import tornadofx.Controller
|
||||
|
||||
class MainViewController : Controller() {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package org.hso.texturesyncclient.view.startupView
|
||||
|
||||
import javafx.scene.Parent
|
||||
import tornadofx.*
|
||||
|
||||
class StartupView : View() {
|
||||
|
||||
override val root: Parent
|
||||
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
package org.hso.texturesyncclient.view.startupView
|
||||
|
||||
import tornadofx.Controller
|
||||
|
||||
class StartupViewController : Controller() {
|
||||
}
|
Reference in New Issue
Block a user