blob: 870691e6d53bd2df3dbaff54738b0b7604077276 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package me.shedaniel.rei.api;
import me.shedaniel.rei.listeners.IListener;
public interface IRecipePlugin extends IListener {
public void registerPluginCategories();
public void registerRecipes();
}
|