mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-17 05:13:11 +01:00
11 lines
273 B
Java
11 lines
273 B
Java
|
package de.ellpeck.actuallyadditions.common.blocks;
|
||
|
|
||
|
import net.minecraft.block.Block;
|
||
|
import net.minecraft.block.material.Material;
|
||
|
|
||
|
public class TreasureChestBlock extends Block {
|
||
|
public TreasureChestBlock() {
|
||
|
super(Properties.create(Material.ROCK));
|
||
|
}
|
||
|
}
|