aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/com/dulkirfabric/events/WorldLoadEvent.kt
blob: d43f74bd32e2cb4d5945c7b1b484350050bea200 (plain)
1
2
3
4
5
6
7
8
9
10
package com.dulkirfabric.events

import com.dulkirfabric.events.base.Event
import net.minecraft.server.MinecraftServer
import net.minecraft.world.World

data class WorldLoadEvent(
    val server: MinecraftServer,
    val world: World
): Event()