Applied-Energistics-2-tiler.../me/cache/helpers/ConnectionWrapper.java
2014-01-21 09:58:41 -06:00

14 lines
237 B
Java

package appeng.me.cache.helpers;
import appeng.api.networking.IGridConnection;
public class ConnectionWrapper
{
public IGridConnection connection;
public ConnectionWrapper(IGridConnection gc) {
connection = gc;
}
}