Applied-Energistics-2-tiler.../me/cluster/IAECluster.java

17 lines
223 B
Java
Raw Normal View History

package appeng.me.cluster;
import java.util.Iterator;
import appeng.api.networking.IGridHost;
public interface IAECluster
{
void updateStatus(boolean updateGrid);
void destroy();
Iterator<IGridHost> getTiles();
}