From a322068fdbe989d67409e7455b27c2d5e51a0991 Mon Sep 17 00:00:00 2001 From: Seil0 Date: Thu, 16 May 2019 15:26:14 +0200 Subject: [PATCH] add models --- .../org/hso/texturesyncclient/model/DataModel.kt | 4 ++++ .../org/hso/texturesyncclient/model/GUIModel.kt | 14 ++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 client/src/main/kotlin/org/hso/texturesyncclient/model/DataModel.kt create mode 100644 client/src/main/kotlin/org/hso/texturesyncclient/model/GUIModel.kt 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