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