document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package com.example.scramble_word.ui.theme
  2.  
  3. /**
  4.  * Data class that represents the game UI state
  5.  */
  6. data class GameUiState(
  7.     val currentScrambledWord: String = "",
  8.     val currentWordCount: Int = 1,
  9.     val score: Int = 0,
  10.     val isGuessedWordWrong: Boolean = false,
  11.     val isGameOver: Boolean = false
  12. )
');