CommandGroup

abstract class CommandGroup @JvmOverloads constructor(requireJoined: Boolean = true, commands: Array<out Command>, var isInterruptable: Boolean = commands.all { it.isInterruptable }) : Command

A type of command that uses multiple commands, joining all their requirements.

Parameters

requireJoined

whether the requirements of the commands should not intersect.

See also

Inheritors

Constructors

Link copied to clipboard
constructor(requireJoined: Boolean = true, commands: Array<out Command>, isInterruptable: Boolean = commands.all { it.isInterruptable })

Properties

Link copied to clipboard
open override var isInterruptable: Boolean

Whether this command can be interrupted by another command.

Link copied to clipboard
override val requirements: Set<Component>

The set of components that this command uses.

Functions

Link copied to clipboard
abstract fun add(command: Command)

Adds a command to this group.

fun add(runnable: Runnable)

Adds a runnable to this group.