Inceptum/launcher-dist/src/main/java/io/gitlab/jfronny/inceptum/GuiCommand.java

22 lines
498 B
Java
Raw Normal View History

2022-09-04 21:21:24 +02:00
package io.gitlab.jfronny.inceptum;
import io.gitlab.jfronny.inceptum.cli.Command;
import io.gitlab.jfronny.inceptum.cli.CommandArgs;
import io.gitlab.jfronny.inceptum.imgui.GuiMain;
public class GuiCommand extends Command {
public GuiCommand() {
super("Displays the Inceptum UI", "", "gui", "show");
}
@Override
public void invoke(CommandArgs args) {
GuiMain.main(args.wrapped);
}
@Override
public boolean enableLog() {
return true;
}
}