All Downloads are FREE. Search and download functionalities are using the official Maven repository.

alakazam.kotlin.core.LoopController.kt Maven / Gradle / Ivy

There is a newer version: 4.7.0
Show newest version
package alakazam.kotlin.core

public interface LoopController {
  public fun shouldLoop(): Boolean
}

public object InfiniteLoopController : LoopController {
  override fun shouldLoop(): Boolean = true
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy