HyCodeYourTale
classpublicPriority 1

WorldMapViewRadiusSubCommand

com.hypixel.hytale.server.core.command.commands.utility.worldmap.WorldMapViewRadiusSubCommand

extends AbstractCommandCollection

0

Methods

0

Public Methods

0

Fields

1

Constructors

Constructors

public
WorldMapViewRadiusSubCommand()

Inheritance

Parent
Current
Interface
Child

Use mouse wheel to zoom, drag to pan. Click nodes to navigate.

Related Classes

Source Code

package com.hypixel.hytale.server.core.command.commands.utility.worldmap;

import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;

public class WorldMapViewRadiusSubCommand extends AbstractCommandCollection {
   public WorldMapViewRadiusSubCommand() {
      super("viewradius", "server.commands.worldmap.viewradius.desc");
      this.addSubCommand(new WorldMapViewRadiusGetCommand());
      this.addSubCommand(new WorldMapViewRadiusSetCommand());
      this.addSubCommand(new WorldMapViewRadiusRemoveCommand());
   }
}