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

import net.minecraft.block.Block;

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

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