com.yungnickyoung.minecraft.yungsapi.world.structure.terrainadaptation.SmallCarvedTopNoBeardAdaptation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of YungsApi-1.21-Fabric Show documentation
Show all versions of YungsApi-1.21-Fabric Show documentation
A common API for YUNG's Minecraft mods
The newest version!
package com.yungnickyoung.minecraft.yungsapi.world.structure.terrainadaptation;
import com.mojang.serialization.MapCodec;
public class SmallCarvedTopNoBeardAdaptation extends EnhancedTerrainAdaptation {
private static final SmallCarvedTopNoBeardAdaptation INSTANCE = new SmallCarvedTopNoBeardAdaptation();
public static final MapCodec CODEC = MapCodec.unit(() -> INSTANCE);
public SmallCarvedTopNoBeardAdaptation() {
super(12, 6, true, false);
}
@Override
public EnhancedTerrainAdaptationType> type() {
return EnhancedTerrainAdaptationType.SMALL_CARVED_TOP_NO_BEARD;
}
}