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

class IOSPlatform: Platform {
    override val needsTouchscreenControls = true
}

actual fun getPlatform(): Platform = IOSPlatform()