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

class IOSPlatform : Platform {
    override val needsTouchscreenControls = true
}

actual fun getPlatform(): Platform = IOSPlatform()