Files
Firmament/src/main/kotlin/moe/nea/firmament/events/EarlyResourceReloadEvent.kt
Linnea Gräf 63d0d32e46 Clean up reuse comments
[no changelog]
2024-08-08 01:15:43 +02:00

11 lines
324 B
Kotlin

package moe.nea.firmament.events
import java.util.concurrent.Executor
import net.minecraft.resource.ResourceManager
data class EarlyResourceReloadEvent(val resourceManager: ResourceManager, val preparationExecutor: Executor) :
FirmamentEvent() {
companion object : FirmamentEventBus<EarlyResourceReloadEvent>()
}