diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-01-10 23:37:34 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-01-10 23:37:34 +0800 |
| commit | ff3c2799a766babb69d772f15958d7a0bf50868c (patch) | |
| tree | 38d045d36135a79ca32011dfae7d011333ad7804 /src/main/java/me/shedaniel/rei/api/IRecipePlugin.java | |
| parent | 9644c27ae7b344a6dbe3cc77cd6f567525f1c711 (diff) | |
| download | RoughlyEnoughItems-ff3c2799a766babb69d772f15958d7a0bf50868c.tar.gz RoughlyEnoughItems-ff3c2799a766babb69d772f15958d7a0bf50868c.tar.bz2 RoughlyEnoughItems-ff3c2799a766babb69d772f15958d7a0bf50868c.zip | |
Basic Searching Works
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/IRecipePlugin.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/IRecipePlugin.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java b/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java new file mode 100644 index 000000000..870691e6d --- /dev/null +++ b/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java @@ -0,0 +1,11 @@ +package me.shedaniel.rei.api; + +import me.shedaniel.rei.listeners.IListener; + +public interface IRecipePlugin extends IListener { + + public void registerPluginCategories(); + + public void registerRecipes(); + +} |
