ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/blocks/ItemViewerBlock.java

11 lines
267 B
Java
Raw Normal View History

2020-11-01 15:11:04 +01:00
package de.ellpeck.actuallyadditions.common.blocks;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
public class ItemViewerBlock extends Block {
public ItemViewerBlock() {
super(Properties.create(Material.ROCK));
}
}