diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-02-26 16:58:22 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-02-26 16:58:22 +0800 |
| commit | 398bda6e8051368d48c0737719ce277028dce396 (patch) | |
| tree | efbf612ecd5f231b6ce8fd126273a5f49f29c8ca /src/main/java/me/shedaniel/rei/api/IRecipePlugin.java | |
| parent | 9e55b44b710f38c63a4bfd17d0b07318d5c68535 (diff) | |
| download | RoughlyEnoughItems-398bda6e8051368d48c0737719ce277028dce396.tar.gz RoughlyEnoughItems-398bda6e8051368d48c0737719ce277028dce396.tar.bz2 RoughlyEnoughItems-398bda6e8051368d48c0737719ce277028dce396.zip | |
Make dialog remember its location
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/IRecipePlugin.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/IRecipePlugin.java | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java b/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java index a64ba67a4..16b7be3aa 100644 --- a/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java +++ b/src/main/java/me/shedaniel/rei/api/IRecipePlugin.java @@ -1,18 +1,16 @@ package me.shedaniel.rei.api; -import me.shedaniel.rei.client.RecipeHelper; - public interface IRecipePlugin { - default public void onFirstLoad(IPluginDisabler pluginDisabler) {} + default public void onFirstLoad(PluginDisabler pluginDisabler) {} - public void registerItems(IItemRegisterer itemRegisterer); + public void registerItems(ItemRegisterer itemRegisterer); - public void registerPluginCategories(IRecipeHelper recipeHelper); + public void registerPluginCategories(RecipeHelper recipeHelper); - public void registerRecipeDisplays(IRecipeHelper recipeHelper); + public void registerRecipeDisplays(RecipeHelper recipeHelper); - public void registerSpeedCraft(IRecipeHelper recipeHelper); + public void registerSpeedCraft(RecipeHelper recipeHelper); default public int getPriority() { return 0; |
