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

public enum BlockPropertyHalf implements INamable {

    TOP("top"), BOTTOM("bottom");

    private final String c;

    private BlockPropertyHalf(String s) {
        this.c = s;
    }

    public String toString() {
        return this.c;
    }

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