0f75db5e80
and all the stuff I did that i forgot to comment.
14 lines
263 B
Java
14 lines
263 B
Java
package appeng.me.helpers;
|
|
|
|
import appeng.api.networking.IGridHost;
|
|
import appeng.api.util.DimensionalCoord;
|
|
|
|
public interface IGridProxyable extends IGridHost
|
|
{
|
|
|
|
AENetworkProxy getProxy();
|
|
|
|
DimensionalCoord getLocation();
|
|
|
|
void gridChanged();
|
|
}
|