1 2 3 4 5 6 7
package coffee.liz.abstractionengine class IOSPlatform: Platform { override val needsTouchscreenControls = true } actual fun getPlatform(): Platform = IOSPlatform()