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,7 @@
package moe.lava.banksia
class JVMPlatform: Platform {
override val name: String = "Java ${System.getProperty("java.version")}"
}
actual fun getPlatform(): Platform = JVMPlatform()