Package mods.railcraft.common.blocks.machine.beta

Examples of mods.railcraft.common.blocks.machine.beta.TileEngine


    }

    @Override
    public void renderTileEntityAt(TileEntity tileentity, double x, double y, double z, float f) {

        TileEngine engine = (TileEngine) tileentity;

        if (engine != null) {
            render(engine.getEnergyStage(), engine.getProgress(), engine.getOrientation(), x, y, z);
        }
    }
View Full Code Here

TOP

Related Classes of mods.railcraft.common.blocks.machine.beta.TileEngine

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.