Files
Applied-Energistics-2/src/main/java/appeng/bootstrap/components/IBlockRegistrationComponent.java
T
2020-05-18 14:02:45 +02:00

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 );
}