13 lines
215 B
Java
13 lines
215 B
Java
|
package appeng.parts.networking;
|
||
|
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
|
||
|
public class PartCableGlass extends PartCable
|
||
|
{
|
||
|
|
||
|
public PartCableGlass(ItemStack is) {
|
||
|
super( PartCableGlass.class, is );
|
||
|
}
|
||
|
|
||
|
}
|