11 lines
209 B
Java
11 lines
209 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);
|
|
}
|