Package com.sk89q.worldedit.world.registry

Examples of com.sk89q.worldedit.world.registry.BlockRegistry


        ignored.add(BlockType.END_PORTAL); // Not supported in existing rotation code
    }

    @Test
    public void testTransform() throws Exception {
        BlockRegistry blockRegistry = new LegacyBlockRegistry();
        for (BlockType type : BlockType.values()) {
            if (ignored.contains(type)) {
                continue;
            }
View Full Code Here

TOP

Related Classes of com.sk89q.worldedit.world.registry.BlockRegistry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.