17 lines
395 B
Java
17 lines
395 B
Java
|
|
package appeng.bootstrap.components;
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.registries.IForgeRegistry;
|
|
|
|
import appeng.bootstrap.IBootstrapComponent;
|
|
|
|
|
|
@FunctionalInterface
|
|
public interface IBlockRegistrationComponent extends IBootstrapComponent
|
|
{
|
|
void blockRegistration( Dist dist, IForgeRegistry<Block> blockRegistry );
|
|
}
|