diff --git a/src/main/kotlin/group/ouroboros/potrogue/view/StartView.kt b/src/main/kotlin/group/ouroboros/potrogue/view/StartView.kt index 36ca6f8..9307ea7 100644 --- a/src/main/kotlin/group/ouroboros/potrogue/view/StartView.kt +++ b/src/main/kotlin/group/ouroboros/potrogue/view/StartView.kt @@ -37,8 +37,9 @@ class StartView (private val grid: TileGrid) : BaseView(grid, GAME_THEME) { .withDecorations(box(), shadow()) .build() + //TODO + //move this on to a configuration screen for world/player customization before PlayView, for now basic gameplay is in order though. // Once the start button is pressed, move on to the PlayView - //TODO move this on to a configuration screen for world/player customization before PlayView, for now basic gameplay is in order though. startButton.onActivated { replaceWith(PlayView(grid)) }