ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/blocks/base/IBaseBlock.java
Michael be421af8e2
Big Refactor of the package layout
Ignore this commit for diffs
2020-09-09 15:48:43 +01:00

18 lines
310 B
Java

package de.ellpeck.actuallyadditions.blocks.base;
import net.minecraft.item.Rarity;
public interface IBaseBlock {
BlockItemBase getItemBlock();
default boolean shouldAddCreative() {
return true;
}
default Rarity getRarity() {
return Rarity.COMMON;
}
}