ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/IActuallyBlock.java
Flanks255 ca3cc00b85 Oh god so many blocks...
Block reg refactor, part 1
2021-08-22 13:16:04 -05:00

21 lines
551 B
Java

package de.ellpeck.actuallyadditions.mod.blocks;
import net.minecraft.item.Item;
public interface IActuallyBlock {
/**
* Defaults to the default class for mc. Don't run this other than on setup
*
* @return this blocks item pair
*/
AABlockItem createBlockItem();
/**
* Defines the Block Item properties for all non-custom block items.
*
* @return block item properties for default block item.
* @see for implementation {@link #createBlockItem()}
*/
Item.Properties getItemProperties();
}