summaryrefslogtreecommitdiff
path: root/composeApp/src/commonMain/kotlin/coffee/liz/abstractionengine/Platform.kt
blob: 7c43f74f0f5e13184f4dd0fe787a71d30117c288 (plain)
1
2
3
4
5
6
7
package coffee.liz.abstractionengine

interface Platform {
    val needsTouchscreenControls: Boolean
}

expect fun getPlatform(): Platform