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