PermCommand class
Пакет: com.hypixel.hytale.server.core.permissions.commands
Файл: com/hypixel/hytale/server/core/permissions/commands/PermCommand.java
extends: AbstractCommandCollection
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
|
super super("perm", "server.commands.perm.desc") |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.permissions.commands;
class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
class="kw">public class PermCommand class="kw">extends AbstractCommandCollection {
class="kw">public PermCommand() {
super("perm", "server.commands.perm.desc");
this.addSubCommand(new PermGroupCommand());
this.addSubCommand(new PermUserCommand());
this.addSubCommand(new PermTestCommand());
this.addSubCommand(new PermListCommand());
this.addSubCommand(new PermReloadCommand());
}
}