mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 18:23:06 +00:00
79 lines
1.3 KiB
Java
79 lines
1.3 KiB
Java
package com.volmit.iris.command;
|
|
|
|
import com.volmit.iris.Iris;
|
|
import com.volmit.iris.util.Command;
|
|
import com.volmit.iris.util.MortarCommand;
|
|
import com.volmit.iris.util.MortarSender;
|
|
|
|
public class CommandIrisStudio extends MortarCommand
|
|
{
|
|
@Command
|
|
private CommandIrisStudioCreate create;
|
|
|
|
@Command
|
|
private CommandIrisStudioOpen open;
|
|
|
|
@Command
|
|
private CommandIrisStudioClose close;
|
|
|
|
@Command
|
|
private CommandIrisStudioPackage pkg;
|
|
|
|
@Command
|
|
private CommandIrisStudioVerify verify;
|
|
|
|
@Command
|
|
private CommandIrisStudioUpdate update;
|
|
|
|
@Command
|
|
private CommandIrisMap map;
|
|
|
|
@Command
|
|
private CommandIrisStudioList list;
|
|
|
|
@Command
|
|
private CommandIrisGoto got0;
|
|
|
|
@Command
|
|
private CommandIrisEditBiome ebiome;
|
|
|
|
@Command
|
|
private CommandIrisMetrics metrics;
|
|
|
|
@Command
|
|
private CommandIrisPregen pregen;
|
|
|
|
@Command
|
|
private CommandIrisPregen world;
|
|
|
|
@Command
|
|
private CommandIrisHotload hotload;
|
|
|
|
@Command
|
|
private CommandIrisTC tc;
|
|
|
|
@Command
|
|
private CommandIrisLoot loot;
|
|
|
|
public CommandIrisStudio()
|
|
{
|
|
super("studio", "std");
|
|
requiresPermission(Iris.perm.studio);
|
|
setCategory("Studio");
|
|
}
|
|
|
|
@Override
|
|
public boolean handle(MortarSender sender, String[] args)
|
|
{
|
|
sender.sendMessage("Iris Studio Commands");
|
|
printHelp(sender);
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
protected String getArgsUsage()
|
|
{
|
|
return "[subcommand]";
|
|
}
|
|
}
|