diff --git a/app/src/main/java/com/gc/necrogame/ui/battleground/BattlegroundViewModel.kt b/app/src/main/java/com/gc/necrogame/ui/battleground/BattlegroundViewModel.kt index 0435cbd..f3dedca 100644 --- a/app/src/main/java/com/gc/necrogame/ui/battleground/BattlegroundViewModel.kt +++ b/app/src/main/java/com/gc/necrogame/ui/battleground/BattlegroundViewModel.kt @@ -12,7 +12,7 @@ import java.time.Instant class BattlegroundViewModel : ViewModel(), GameStateUpdateable { private val _text = MutableLiveData().apply { - value = "This is notifications Fragment" + value = "This is the battleground. This will be the 'raid the village' portion of the app." } val text: LiveData = _text diff --git a/app/src/main/java/com/gc/necrogame/ui/lair/LairViewModel.kt b/app/src/main/java/com/gc/necrogame/ui/lair/LairViewModel.kt index 9167552..06fcc84 100644 --- a/app/src/main/java/com/gc/necrogame/ui/lair/LairViewModel.kt +++ b/app/src/main/java/com/gc/necrogame/ui/lair/LairViewModel.kt @@ -11,7 +11,7 @@ import java.time.Instant class LairViewModel : ViewModel(), GameStateUpdateable { private val _text = MutableLiveData().apply { - value = "This is home Fragment" + value = "This is the lair. We're gonna use this for the reset mechanic and general overview" } val text: LiveData = _text