Code/net/minecraft/world/level/block/state/properties/AttachFace.java

20 lines
430 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.level.block.state.properties;
import net.minecraft.util.StringRepresentable;
public enum AttachFace implements StringRepresentable {
FLOOR("floor"),
WALL("wall"),
CEILING("ceiling");
private final String name;
private AttachFace(final String p_61311_) {
this.name = p_61311_;
}
@Override
public String getSerializedName() {
return this.name;
}
}