mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-15 12:39:10 +01:00
ca3cc00b85
Block reg refactor, part 1
10 lines
268 B
Java
10 lines
268 B
Java
package de.ellpeck.actuallyadditions.mod.blocks;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.item.BlockItem;
|
|
|
|
public class AABlockItem extends BlockItem {
|
|
public AABlockItem(Block blockIn, Properties builder) {
|
|
super(blockIn, builder);
|
|
}
|
|
}
|