summaryrefslogtreecommitdiff
path: root/src/main/kotlin/tech/thatgravyboat/rewardclaim/Command.kt
blob: ac1f08790a6ae1cdb73c80521389ca754ee6010c (plain)
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())
    }
}