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