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

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


                    GL11.glPopMatrix();
                }
            }
        }

        TileTankBase ironTank = (TileTankBase) tile;
        if (!ironTank.isMaster() || ironTank.isInvalid())
            return;
        int height = getTankHeight(ironTank);
        float yOffset = height / 2f;
        float vScale = height - 2;
        float hScale = ironTank.getPattern().getPatternWidthX() - 2;

        TankManager tankManager = ironTank.getTankManager();
        if (tankManager == null)
            return;
        StandardTank tank = tankManager.get(0);
        if (tank == null)
            return;
View Full Code Here

TOP

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

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.