add light docs describing the befunge interface

This commit is contained in:
2018-11-04 23:56:47 -05:00
parent b25400db3c
commit c352d921b0
6 changed files with 69 additions and 5 deletions

View File

@@ -7,6 +7,7 @@ import javafx.scene.Parent
import javafx.scene.control.Label
import tornadofx.*
class SampleView : View() {
private val controller: SampleController by inject()
@@ -43,4 +44,8 @@ class SampleController : Controller() {
class SampleApp : App() {
override val primaryView = SampleView::class
}
fun main(args: Array<String>) {
launch<SampleApp>(args)
}