This commit is contained in:
LavaDesu 2025-04-13 00:51:32 +10:00
commit aebc802b88
Signed by: cilly
GPG key ID: 6500251E087653C9
54 changed files with 1598 additions and 0 deletions

View file

@ -0,0 +1,9 @@
package moe.lava.banksia
import platform.UIKit.UIDevice
class IOSPlatform: Platform {
override val name: String = UIDevice.currentDevice.systemName() + " " + UIDevice.currentDevice.systemVersion
}
actual fun getPlatform(): Platform = IOSPlatform()