refactor: delete some starter app stuff

This commit is contained in:
Cilly Leang 2026-02-05 01:11:37 +11:00
parent 0d84411f14
commit f606eb2e33
Signed by: cilly
GPG key ID: 6500251E087653C9
5 changed files with 2 additions and 39 deletions

View file

@ -1,9 +0,0 @@
package moe.lava.neon.core
import android.os.Build
class AndroidPlatform : Platform {
override val name: String = "Android ${Build.VERSION.SDK_INT}"
}
actual fun getPlatform(): Platform = AndroidPlatform()

View file

@ -1,7 +0,0 @@
package moe.lava.neon.core
interface Platform {
val name: String
}
expect fun getPlatform(): Platform

View file

@ -1,7 +0,0 @@
package moe.lava.neon.core
class JVMPlatform : Platform {
override val name: String = "Java ${System.getProperty("java.version")}"
}
actual fun getPlatform(): Platform = JVMPlatform()