add models

This commit is contained in:
Jannik 2019-05-16 15:26:14 +02:00
parent 60e9f7f4ad
commit a322068fdb
Signed by: Seil0
GPG Key ID: E8459F3723C52C24
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package org.hso.texturesyncclient.model
class DataModel {
}

View File

@ -0,0 +1,14 @@
package org.hso.texturesyncclient.model
import tornadofx.*
class GUIModel : View("GUIModel"){
var data = DataModel()
override val root = vbox() {
}
}