generated from rnentjes/kotlin-server-web-undertow
8 lines
281 B
Kotlin
8 lines
281 B
Kotlin
package mtmc.util
|
|
|
|
actual fun currentTimeMillis(): Double = System.currentTimeMillis().toDouble()
|
|
actual fun requestAnimationFrame(action: (Double) -> Unit) {
|
|
error("requestAnimationFrame is not supported on JVM")
|
|
}
|
|
|
|
actual fun immediateTimeout(action: (Double) -> Unit): Int = 0 |