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