Minestom/src/autogenerated/java/net/minestom/server/instance/block/states/BlackWallBanner.java

22 lines
804 B
Java

package net.minestom.server.instance.block.states;
import java.lang.Deprecated;
import net.minestom.server.instance.block.Block;
import net.minestom.server.instance.block.BlockAlternative;
/**
* AUTOGENERATED by BlockGenerator
*/
@Deprecated(
since = "forever",
forRemoval = false
)
public final class BlackWallBanner {
public static void initStates() {
Block.BLACK_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 8217, "facing=north"));
Block.BLACK_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 8218, "facing=south"));
Block.BLACK_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 8219, "facing=west"));
Block.BLACK_WALL_BANNER.addBlockAlternative(new BlockAlternative((short) 8220, "facing=east"));
}
}