7 lines
105 B
Kotlin
7 lines
105 B
Kotlin
package moe.uni.comfyKmp
|
|
|
|
interface Platform {
|
|
val name: String
|
|
}
|
|
|
|
expect fun getPlatform(): Platform |