2015-05-23 15:02:29 +02:00
|
|
|
package appeng.block;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.item.ItemSlab;
|
|
|
|
|
2022-12-02 17:40:47 +01:00
|
|
|
public class AEBaseItemBlockSlab extends ItemSlab {
|
|
|
|
public AEBaseItemBlockSlab(
|
|
|
|
final Block block,
|
|
|
|
final AEBaseSlabBlock singleSlab,
|
|
|
|
final AEBaseSlabBlock doubleSlab,
|
|
|
|
final Boolean isDoubleSlab
|
|
|
|
) {
|
|
|
|
super(block, singleSlab, doubleSlab, isDoubleSlab);
|
|
|
|
}
|
2015-05-23 15:02:29 +02:00
|
|
|
}
|