aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/blocks/ItemCasings3.java
blob: 737c9e5145ab8d0ab71d7dbc60550e05d41999b8 (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 ItemCasings3 extends ItemCasingsAbstract {

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