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

22 lines
486 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) {
2022-09-06 14:55:36 +02:00
GuiMain.main();
2022-09-04 21:21:24 +02:00
}
@Override
public boolean enableLog() {
return true;
}
}