Package-level declarations

Types

Link copied to clipboard
class Delay(time: TimeSpan = TimeSpan.ZERO) : Command

A Command that does nothing except wait until a certain amount of time has passed. Like all delays, if placed directly in a ParallelGroup, it will accomplish nothing except slowing loop times and taking up memory.

Link copied to clipboard
class WaitUntil(check: () -> Boolean) : Command

A type of delay that waits until a specified check returns true. Like all delays, if placed directly in a ParallelGroup, it will accomplish nothing except slowing loop times and taking up memory.