Examples of TileIC2SinkDelegate


Examples of mods.railcraft.common.plugins.ic2.TileIC2SinkDelegate

    }

    public TileEntity getIC2Delegate() {
        if (sinkDelegate == null)
            try {
                sinkDelegate = new TileIC2SinkDelegate(this);
            } catch (Throwable error) {
                Game.logErrorAPI("IndustrialCraft", error, null);
            }
        return sinkDelegate;
    }
View Full Code Here

Examples of mods.railcraft.common.plugins.ic2.TileIC2SinkDelegate

    @Override
    public TileEntity getIC2Delegate() {
        if (sinkDelegate == null)
            try {
                sinkDelegate = new TileIC2SinkDelegate(this);
            } catch (Throwable error) {
                Game.logErrorAPI("IndustrialCraft", error, null);
            }
        return sinkDelegate;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.