diff --git a/client/src/main/kotlin/org/hso/texturesyncclient/model/DataModel.kt b/client/src/main/kotlin/org/hso/texturesyncclient/model/DataModel.kt new file mode 100644 index 0000000..aef14ef --- /dev/null +++ b/client/src/main/kotlin/org/hso/texturesyncclient/model/DataModel.kt @@ -0,0 +1,4 @@ +package org.hso.texturesyncclient.model + +class DataModel { +} \ No newline at end of file diff --git a/client/src/main/kotlin/org/hso/texturesyncclient/model/GUIModel.kt b/client/src/main/kotlin/org/hso/texturesyncclient/model/GUIModel.kt new file mode 100644 index 0000000..25c898d --- /dev/null +++ b/client/src/main/kotlin/org/hso/texturesyncclient/model/GUIModel.kt @@ -0,0 +1,14 @@ +package org.hso.texturesyncclient.model + +import tornadofx.* + +class GUIModel : View("GUIModel"){ + + var data = DataModel() + + + override val root = vbox() { + + } + +} \ No newline at end of file