Files
Firmament/src/main/kotlin/events/ReloadRegistrationEvent.kt
Linnea Gräf d2f240ff0c Refactor source layout
Introduce compat source sets and move all kotlin sources to the main directory

[no changelog]
2024-08-28 19:04:24 +02:00

8 lines
232 B
Kotlin

package moe.nea.firmament.events
import io.github.moulberry.repo.NEURepository
data class ReloadRegistrationEvent(val repo: NEURepository) : FirmamentEvent() {
companion object : FirmamentEventBus<ReloadRegistrationEvent>()
}