Companion

object Companion

Functions

Link copied to clipboard
fun of(runnable: Runnable): Component

Creates a component using the provided runnable.

fun of(defaultCommand: Command, runnable: () -> Unit): Component
fun of(runnable: Runnable, defaultCommand: Command): Component

Creates a component using the provided runnable and defaultCommand.

fun of(runnable: Runnable, defaultCommandSupplier: Supplier<Command?>): Component
fun of(defaultCommandSupplier: () -> Command? = { null }, runnable: () -> Unit): Component

Creates a component using the provided runnable and defaultCommandSupplier.