aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/EarlyResourceReloadEvent.kt
blob: b9cf71730f77380325568c368ab48b500ed2b5a5 (plain)
1
2
3
4
5
6
7
8
9
10
package moe.nea.firmament.events

import java.util.concurrent.Executor
import net.minecraft.server.packs.resources.ResourceManager

data class EarlyResourceReloadEvent(val resourceManager: ResourceManager, val preparationExecutor: Executor) :
    FirmamentEvent() {
    companion object : FirmamentEventBus<EarlyResourceReloadEvent>()
}