Add orx-timer

This commit is contained in:
Edwin Jakobs
2020-04-08 12:43:26 +02:00
parent d6fa5d7fff
commit fa2a2f54ba
7 changed files with 129 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import org.openrndr.application
import org.openrndr.extra.timer.timeOut
fun main() = application {
program {
timeOut(2.0) {
println("hello there $seconds" )
}
}
}