SimpleServiceLocator.setFactorizationProxy(getWrappedProxy("factorization", IFactorizationProxy.class, FactorizationProxy.class, new IFactorizationProxy() {
@Override public boolean isBarral(TileEntity tile) {return false;}
}));
SimpleServiceLocator.setEnderIOProxy(getWrappedProxy("EnderIO", IEnderIOProxy.class, EnderIOProxy.class, new IEnderIOProxy() {
@Override public boolean isSendAndReceive(TileEntity tile) {return false;}
@Override public boolean isHyperCube(TileEntity tile) {return false;}
@Override public List<TileEntity> getConnectedHyperCubes(TileEntity tile) {return new ArrayList<TileEntity>(0);}
@Override public boolean isEnderIO() {return false;}
}));