package net.minecraft.world.level.chunk.storage; import net.minecraft.resources.ResourceKey; import net.minecraft.world.level.Level; public record RegionStorageInfo(String level, ResourceKey dimension, String type) { public RegionStorageInfo withTypeSuffix(final String suffix) { return new RegionStorageInfo(this.level, this.dimension, this.type + suffix); } }