mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-17 05:13:11 +01:00
11 lines
267 B
Java
11 lines
267 B
Java
|
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));
|
||
|
}
|
||
|
}
|