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

17 lines
410 B
Java

package appeng.bootstrap.components;
import net.minecraft.item.crafting.IRecipe;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.registries.IForgeRegistry;
import appeng.bootstrap.IBootstrapComponent;
@FunctionalInterface
public interface IRecipeRegistrationComponent extends IBootstrapComponent
{
void recipeRegistration( Dist dist, IForgeRegistry<IRecipe> recipeRegistry );
}