14 lines
210 B
Java
14 lines
210 B
Java
|
|
package appeng.recipes;
|
|
|
|
|
|
import com.google.gson.JsonObject;
|
|
|
|
import net.minecraftforge.common.crafting.JsonContext;
|
|
|
|
|
|
public interface IAERecipeFactory
|
|
{
|
|
void register( JsonObject json, JsonContext ctx );
|
|
}
|