classpublicPriority 1
UpdateCommand
com.hypixel.hytale.server.core.command.commands.utility.git.UpdateCommand
extends AbstractCommandCollection
0
Methods
0
Public Methods
0
Fields
1
Constructors
Constructors
public
UpdateCommand()Inheritance
Parent
Current
Interface
Child
Use mouse wheel to zoom, drag to pan. Click nodes to navigate.
Related Classes
Used By
Source Code
package com.hypixel.hytale.server.core.command.commands.utility.git;
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
public class UpdateCommand extends AbstractCommandCollection {
public UpdateCommand() {
super("update", "server.commands.update.desc");
this.addSubCommand(new UpdateAssetsCommand());
this.addSubCommand(new UpdatePrefabsCommand());
}
}