Package logisticspipes.proxy

Source Code of logisticspipes.proxy.SpecialTankHandlerManager

package logisticspipes.proxy;

import logisticspipes.proxy.specialtankhandler.BuildCraftTankHandler;
import cpw.mods.fml.common.Loader;

public class SpecialTankHandlerManager {

  public static void load() {
    if(Loader.isModLoaded("BuildCraft|Factory")) {
      SimpleServiceLocator.specialTankHandler.registerHandler(new BuildCraftTankHandler());
    }
  }
}
TOP

Related Classes of logisticspipes.proxy.SpecialTankHandlerManager

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.