PrefabPathCommand class
Пакет: com.hypixel.hytale.builtin.path.commands
Файл: com/hypixel/hytale/builtin/path/commands/PrefabPathCommand.java
extends: AbstractCommandCollection
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
|
super super("path", "server.commands.npcpath.desc") |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.builtin.path.commands;
class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
class="kw">public class PrefabPathCommand class="kw">extends AbstractCommandCollection {
class="kw">public PrefabPathCommand() {
super("path", "server.commands.npcpath.desc");
this.setPermissionGroups("hytale:WorldEditor");
this.addSubCommand(new PrefabPathListCommand());
this.addSubCommand(new PrefabPathNodesCommand());
this.addSubCommand(new PrefabPathNewCommand());
this.addSubCommand(new PrefabPathEditCommand());
this.addSubCommand(new PrefabPathAddCommand());
this.addSubCommand(new PrefabPathMergeCommand());
this.addSubCommand(new PrefabPathUpdateCommand());
}
}