PrefabPathUpdateCommand class
Пакет: com.hypixel.hytale.builtin.path.commands
Файл: com/hypixel/hytale/builtin/path/commands/PrefabPathUpdateCommand.java
extends: AbstractCommandCollection
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
|
super super("update", "server.commands.npcpath.update.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 PrefabPathUpdateCommand class="kw">extends AbstractCommandCollection {
class="kw">public PrefabPathUpdateCommand() {
super("update", "server.commands.npcpath.update.desc");
this.addSubCommand(new PrefabPathUpdatePauseCommand());
this.addSubCommand(new PrefabPathUpdateObservationAngleCommand());
}
}