CommandSignatureImpl

open class CommandSignatureImpl(    val receiverParameter: CommandReceiverParameter<*>?,     val valueParameters: List<AbstractCommandValueParameter<*>>,     onCall: suspend CommandSignatureImpl.(resolvedCommandCall: ResolvedCommandCall) -> Unit) : AbstractCommandSignature, CommandSignature

Constructors

Link copied to clipboard
fun CommandSignatureImpl(    receiverParameter: CommandReceiverParameter<*>?,     valueParameters: List<AbstractCommandValueParameter<*>>,     onCall: suspend CommandSignatureImpl.(resolvedCommandCall: ResolvedCommandCall) -> Unit)

Functions

Link copied to clipboard
open suspend override fun call(resolvedCommandCall: ResolvedCommandCall)

调用这个指令.

Properties

Link copied to clipboard
open override val receiverParameter: CommandReceiverParameter<*>?

接收者参数, 为 CommandSender 子类

Link copied to clipboard
open override val valueParameters: List<AbstractCommandValueParameter<*>>

形式 值参数.