blob: e3f3bbdf973dd7abd8491060b8064cb15416219d (
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 GT_Item_Casings8 extends GT_Item_Casings_Abstract {
public GT_Item_Casings8(Block block) {
super(block);
}
}
|