LightingCommand class

Пакет: com.hypixel.hytale.server.core.command.commands.utility.lighting

Файл: com/hypixel/hytale/server/core/command/commands/utility/lighting/LightingCommand.java

extends: AbstractCommandCollection

Методы (1)

МодификаторыВозвратСигнатура
abstract super super("lighting", "server.commands.lighting.desc")

Исходный код

Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.command.commands.utility.lighting;

class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;

class="kw">public class LightingCommand class="kw">extends AbstractCommandCollection {
   class="kw">public LightingCommand() {
      super("lighting", "server.commands.lighting.desc");
      this.addAliases("light");
      this.addSubCommand(new LightingCalculationCommand());
      this.addSubCommand(new LightingGetCommand());
      this.addSubCommand(new LightingInvalidateCommand());
      this.addSubCommand(new LightingInfoCommand());
      this.addSubCommand(new LightingSendCommand());
   }
}