InventoryCommand class
Пакет: com.hypixel.hytale.server.core.command.commands.player.inventory
Файл: com/hypixel/hytale/server/core/command/commands/player/inventory/InventoryCommand.java
extends: AbstractCommandCollection
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
|
super super("inventory", "server.commands.inventory.desc") |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.command.commands.player.inventory;
class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
class="kw">public class InventoryCommand class="kw">extends AbstractCommandCollection {
class="kw">public InventoryCommand() {
super("inventory", "server.commands.inventory.desc");
this.addAliases("inv");
this.setPermissionGroups("hytale:Builder");
this.addSubCommand(new InventoryClearCommand());
this.addSubCommand(new InventorySeeCommand());
this.addSubCommand(new InventoryItemCommand());
this.addSubCommand(new InventoryBackpackCommand());
}
}