cleaned up some descriptions. no more references to template components

This commit is contained in:
dtookey 2020-10-11 18:53:06 -04:00
parent 15bc7ca064
commit ae98912cb8
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import java.time.Instant
class BattlegroundViewModel : ViewModel(), GameStateUpdateable { class BattlegroundViewModel : ViewModel(), GameStateUpdateable {
private val _text = MutableLiveData<String>().apply { private val _text = MutableLiveData<String>().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<String> = _text val text: LiveData<String> = _text

View File

@ -11,7 +11,7 @@ import java.time.Instant
class LairViewModel : ViewModel(), GameStateUpdateable { class LairViewModel : ViewModel(), GameStateUpdateable {
private val _text = MutableLiveData<String>().apply { private val _text = MutableLiveData<String>().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<String> = _text val text: LiveData<String> = _text