17 lines
223 B
Java
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();
|
||
|
|
||
|
}
|