summaryrefslogtreecommitdiff
path: root/src/main/kotlin/event/CommandRegistrationEvent.kt
blob: 49bc6375ffbef2dbd4495cbbbbe5f397a8ccdcb9 (plain)
1
2
3
4
5
6
7
8
9
10
package moe.nea.ultranotifier.event

import com.mojang.brigadier.CommandDispatcher
import moe.nea.ultranotifier.commands.UltraCommandSource

/**
 * Fired whenever commands need to be registered. This may be multiple times during each launch. Old commands will be
 * automatically unregistered first.
 */
class CommandRegistrationEvent(val dispatcher: CommandDispatcher<UltraCommandSource>) : UltraEvent()