2013-12-27 23:59:59 +01:00
|
|
|
package appeng.parts.networking;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
public class PartCableGlass extends PartCable
|
|
|
|
{
|
|
|
|
|
2014-05-26 00:43:17 +02:00
|
|
|
public PartCableGlass(Class c, ItemStack is) {
|
|
|
|
super( c, is );
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
public PartCableGlass(ItemStack is) {
|
2014-05-26 00:43:17 +02:00
|
|
|
this( PartCableGlass.class, is );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|