Rename SimpleCommand to RawCommand

This commit is contained in:
Him188 2020-06-27 01:28:32 +08:00
parent 91d2b0b7d2
commit b9342be382

View File

@ -1,10 +1,10 @@
package net.mamoe.mirai.console.command
abstract class SimpleCommand(
abstract class RawCommand(
override val owner: CommandOwner,
override vararg val names: String,
override val usage: String,
override val description: String,
override val usage: String = "<no usages given>",
override val description: String = "<no descriptions given>",
override val permission: CommandPermission = CommandPermission.Default,
override val prefixOptional: Boolean = false
) : Command {