InteractionCommand class

Пакет: com.hypixel.hytale.server.core.modules.interaction.commands

Файл: com/hypixel/hytale/server/core/modules/interaction/commands/InteractionCommand.java

extends: AbstractCommandCollection

Методы (1)

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

Исходный код

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

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

class="kw">public class InteractionCommand class="kw">extends AbstractCommandCollection {
   class="kw">public InteractionCommand() {
      super("interaction", "server.commands.interaction.desc");
      this.addAliases("interact");
      this.setPermissionGroups("hytale:WorldEditor");
      this.addSubCommand(new InteractionRunCommand());
      this.addSubCommand(new InteractionSnapshotSourceCommand());
      this.addSubCommand(new InteractionClearCommand());
   }
}