aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/blocks/ItemCasings4.java
blob: 97d160105a98dff202e432ef13f97036e402db7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package gregtech.common.blocks;

import net.minecraft.block.Block;

/**
 * The casings are split into separate files because they are registered as regular blocks, and a regular block can have
 * 16 subtypes at most.
 */
public class ItemCasings4 extends ItemCasingsAbstract {

    public ItemCasings4(Block block) {
        super(block);
    }
}