1 2 3 4 5 6 7 8 9 10 11 12 13
package tech.thatgravyboat.rewardclaim import gg.essential.api.EssentialAPI import gg.essential.api.commands.Command import gg.essential.api.commands.DefaultHandler class Command : Command("rewardclaim") { @DefaultHandler fun handle() { EssentialAPI.getGuiUtil().openScreen(Config.gui()) } }