tieskedh
09/01/2017, 2:57 PMinline fun <reified T: App> launch(vararg strings: String) =Application.launch(T::class.java, *strings)
so you can use it like launch<MyApp>()
Another call I would like is adding generics to the constructor, so you can use MyApp: App<MyView>()
instead of MyApp: App(MyView::class)
this can not be done from outside the code of tornadofx itself, so my question is, is this a direction we would like to go?