Newer
Older
void-pack-super-server / work / decompile-ee3ecae0 / net / minecraft / server / BlockPropertyAttachPosition.java
Simon Lindgren on 26 Mar 2020 332 bytes first commit
package net.minecraft.server;

public enum BlockPropertyAttachPosition implements INamable {

    FLOOR("floor"), WALL("wall"), CEILING("ceiling");

    private final String d;

    private BlockPropertyAttachPosition(String s) {
        this.d = s;
    }

    @Override
    public String getName() {
        return this.d;
    }
}