/* * Roughly Enough Items by Danielshe. * Licensed under the MIT License. */ package me.shedaniel.rei.api; import net.minecraft.util.Identifier; import java.util.List; import java.util.Optional; public interface LiveRecipeGenerator { Identifier getCategoryIdentifier(); default Optional> getRecipeFor(EntryStack entry) { return Optional.empty(); } default Optional> getUsageFor(EntryStack entry) { return Optional.empty(); } }