aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/cc/polyfrost/oneconfig/utils/dsl/TickDelayDSL.kt
blob: ed18fd512ae92d39227919eb0411dd2eb8ef0af3 (plain)
1
2
3
4
5
6
7
8
9
10
package cc.polyfrost.oneconfig.utils.dsl

import cc.polyfrost.oneconfig.utils.TickDelay

/**
 * Schedules a Runnable to be called after a certain amount of ticks.
 *
 * @see TickDelay
 */
fun tick(ticks: Int, block: () -> Unit) = TickDelay(block, ticks)