Applied-Energistics-2-tiler.../me/cluster/IAECluster.java
2013-12-27 16:59:59 -06:00

17 lines
223 B
Java

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();
}