AuthCommand class

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

Файл: com/hypixel/hytale/server/core/command/commands/server/auth/AuthCommand.java

extends: AbstractCommandCollection

Методы (1)

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

Исходный код

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

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

class="kw">public class AuthCommand class="kw">extends AbstractCommandCollection {
   class="kw">public AuthCommand() {
      super("auth", "server.commands.auth.desc");
      this.addSubCommand(new AuthStatusCommand());
      this.addSubCommand(new AuthLoginCommand());
      this.addSubCommand(new AuthSelectCommand());
      this.addSubCommand(new AuthLogoutCommand());
      this.addSubCommand(new AuthCancelCommand());
      this.addSubCommand(new AuthPersistenceCommand());
   }
}