aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/events/EarlyResourceReloadEvent.kt
blob: 9013aa40d17289262b32208209ae2e85a55bb992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * SPDX-FileCopyrightText: 2024 Linnea Gräf <nea@nea.moe>
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

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>()
}