jvmMain.earth.worldwind.MR.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worldwind-jvm Show documentation
Show all versions of worldwind-jvm Show documentation
The WorldWind Kotlin SDK (WWK) includes the library, examples and tutorials for building multiplatform 3D virtual globe applications for Android, Web and Java.
The newest version!
package earth.worldwind
import dev.icerock.moko.graphics.Color
import dev.icerock.moko.resources.FileResource
import dev.icerock.moko.resources.ImageResource
import dev.icerock.moko.resources.ResourceContainer
import dev.icerock.moko.resources.ResourcePlatformDetails
import java.lang.ClassLoader
import kotlin.String
import kotlin.collections.List
public actual object MR {
private val contentHash: String = "4a3663693c5456d98d89c7128779a404"
private val resourcesClassLoader: ClassLoader = MR::class.java.classLoader
public actual object images : ResourceContainer {
public actual override val __platformDetails: ResourcePlatformDetails =
ResourcePlatformDetails(resourcesClassLoader)
public actual val worldwind_worldtopobathy2004053: ImageResource =
ImageResource(resourcesClassLoader = __platformDetails.resourcesClassLoader, filePath =
"images/worldwind_worldtopobathy2004053.png", darkFilePath = null)
public actual val sun_texture: ImageResource = ImageResource(resourcesClassLoader =
__platformDetails.resourcesClassLoader, filePath = "images/sun_texture.png", darkFilePath =
null)
public actual val dnb_land_ocean_ice_2012: ImageResource = ImageResource(resourcesClassLoader =
__platformDetails.resourcesClassLoader, filePath = "images/dnb_land_ocean_ice_2012.png",
darkFilePath = null)
public actual override fun values(): List =
listOf(worldwind_worldtopobathy2004053, sun_texture, dnb_land_ocean_ice_2012)
}
public actual object files : ResourceContainer {
public actual override val __platformDetails: ResourcePlatformDetails =
ResourcePlatformDetails(resourcesClassLoader)
public actual val stars_json: FileResource = FileResource(resourcesClassLoader =
__platformDetails.resourcesClassLoader, filePath = "files/stars.json")
public actual override fun values(): List = listOf(stars_json)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy