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