From 886571f2da47ea0f25dedd9ac58412e947caab89 Mon Sep 17 00:00:00 2001 From: LimePotato Date: Sat, 28 Oct 2023 13:51:19 -0600 Subject: [PATCH] Shuffle a bit --- src/main/kotlin/group/ouroboros/potrogue/view/StartView.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)) }