17 lines
618 B
Java
17 lines
618 B
Java
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<GameRules.Key<GameRules.BooleanValue>> disabledGameRules,
|
|
@Nullable ResourceKey<FlatLevelGeneratorPreset> flatLevelPreset
|
|
) {
|
|
}
|