Add about and options window
This commit is contained in:
parent
68f94064ad
commit
1d2ecb9999
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ class WelcomeWindow private constructor(parent: TApplication, flags: Int) :
|
|||
addButton("Options", CENTERED + 13, CENTERED - 2,
|
||||
object : TAction() {
|
||||
override fun DO() {
|
||||
TODO("Create an options screen to open")
|
||||
OptionsWindow(parent)
|
||||
}
|
||||
}
|
||||
)
|
||||
|
@ -51,7 +51,7 @@ class WelcomeWindow private constructor(parent: TApplication, flags: Int) :
|
|||
addButton("About", CENTERED + 14, CENTERED,
|
||||
object : TAction() {
|
||||
override fun DO() {
|
||||
TODO("About page")
|
||||
AboutWindow(parent)
|
||||
}
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue