Package mods.railcraft.common.blocks.aesthetics.wall

Examples of mods.railcraft.common.blocks.aesthetics.wall.WallInfo


    }

    @Override
    public boolean renderWorldBlock(IBlockAccess world, int x, int y, int z, Block block, int modelId, RenderBlocks renderBlocks) {
        int meta = world.getBlockMetadata(x, y, z);
        WallInfo wall = ((BlockRailcraftWall) block).proxy.fromMeta(meta);
        if (canRenderInPass(renderBlocks, wall)) {
            renderBlocks.renderBlockWall((BlockWall) block, x, y, z);
            return true;
        }
        return false;
View Full Code Here

TOP

Related Classes of mods.railcraft.common.blocks.aesthetics.wall.WallInfo

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.