package net.minecraft.client.gui.screens.worldselection; import java.util.Set; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.minecraft.resources.ResourceKey; import net.minecraft.world.level.GameRules; import net.minecraft.world.level.levelgen.flat.FlatLevelGeneratorPreset; import org.jetbrains.annotations.Nullable; @Environment(EnvType.CLIENT) public record InitialWorldCreationOptions( WorldCreationUiState.SelectedGameMode selectedGameMode, Set> disabledGameRules, @Nullable ResourceKey flatLevelPreset ) { }