All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.platform.Platform.kt Maven / Gradle / Ivy

The newest version!
package org.openrndr.platform

enum class PlatformType {
    GENERIC,
    WINDOWS,
    MAC,
    BROWSER
}

enum class PlatformArchitecture {
    X86_64,
    AARCH64,
    UNKNOWN
}

expect object Platform {
    val type: PlatformType
    val architecture: PlatformArchitecture
    fun property(key: String): String?
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy