From ae98912cb89ca94519b218dde072140ab0ad2d45 Mon Sep 17 00:00:00 2001 From: dtookey Date: Sun, 11 Oct 2020 18:53:06 -0400 Subject: [PATCH] cleaned up some descriptions. no more references to template components --- .../com/gc/necrogame/ui/battleground/BattlegroundViewModel.kt | 2 +- app/src/main/java/com/gc/necrogame/ui/lair/LairViewModel.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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