Skip to content

Instantly share code, notes, and snippets.

@GeePawHill
Created August 4, 2023 19:21
Show Gist options
  • Save GeePawHill/ef093535c6b23e7483b2602f96562186 to your computer and use it in GitHub Desktop.
Save GeePawHill/ef093535c6b23e7483b2602f96562186 to your computer and use it in GitHub Desktop.
class TestTimerFactory : TimerFactory, Timer {
var tick: (now: Long) -> Unit = {}
override fun makeTimer(tick: (now: Long) -> Unit): Timer {
this.tick = tick
return this
}
override fun start() {
}
override fun stop() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment