13 lines
540 B
Java
13 lines
540 B
Java
|
package net.minecraft.client.gui.screens.worldselection;
|
||
|
|
||
|
import net.minecraft.core.LayeredRegistryAccess;
|
||
|
import net.minecraft.server.RegistryLayer;
|
||
|
import net.minecraft.server.ReloadableServerResources;
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
|
||
|
@FunctionalInterface
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public interface WorldCreationContextMapper {
|
||
|
WorldCreationContext apply(ReloadableServerResources p_365416_, LayeredRegistryAccess<RegistryLayer> p_365038_, DataPackReloadCookie p_366983_);
|
||
|
}
|