Skip to content

Instantly share code, notes, and snippets.

@florentinobenedictus
Created June 5, 2024 16:16
Show Gist options
  • Save florentinobenedictus/5ac09d93922120df585c4fdd15a2dbc3 to your computer and use it in GitHub Desktop.
Save florentinobenedictus/5ac09d93922120df585c4fdd15a2dbc3 to your computer and use it in GitHub Desktop.
package com.example.unscramble.ui
data class GameUiState(
val currentScrambledWord: String = "",
val isGuessedWordWrong: Boolean = false,
val score: Int = 0,
val currentWordCount: Int = 1,
val isGameOver: Boolean = false,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment