8 lines
254 B
Kotlin
8 lines
254 B
Kotlin
|
|
package com.mindmachine.mvp.session
|
||
|
|
|
||
|
|
import com.mindmachine.mvp.domain.RuntimeState
|
||
|
|
|
||
|
|
fun shouldShowActiveControlsByDefault(runtimeState: RuntimeState): Boolean {
|
||
|
|
return runtimeState != RuntimeState.RUNNING && runtimeState != RuntimeState.COUNTDOWN
|
||
|
|
}
|