diff options
| author | shedaniel <daniel@shedaniel.me> | 2020-01-02 14:31:16 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2020-01-02 14:31:16 +0800 |
| commit | 5e2eccadbd91171c01cdb209d1338bcfb7786b1c (patch) | |
| tree | 6c7387de5baea8b335e8abe58651018f77ad2d41 /src/main/java/me/shedaniel/rei/api/plugins | |
| parent | e8714fe8fc1dcaec7ad299c63e2b657870c8fb40 (diff) | |
| download | RoughlyEnoughItems-5e2eccadbd91171c01cdb209d1338bcfb7786b1c.tar.gz RoughlyEnoughItems-5e2eccadbd91171c01cdb209d1338bcfb7786b1c.tar.bz2 RoughlyEnoughItems-5e2eccadbd91171c01cdb209d1338bcfb7786b1c.zip | |
3.3
Fix #58
Close #134
Close #158
Fix #227
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/plugins')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java b/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java index 858c57ca8..708bab589 100644 --- a/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java +++ b/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java @@ -11,7 +11,7 @@ import me.shedaniel.rei.api.REIPluginEntry; import me.shedaniel.rei.api.RecipeHelper; public interface REIPluginV0 extends REIPluginEntry { - + /** * Registers entries on the item panel * @@ -19,7 +19,7 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerEntries(EntryRegistry entryRegistry) { } - + /** * Registers categories * @@ -27,7 +27,7 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerPluginCategories(RecipeHelper recipeHelper) { } - + /** * Registers displays for categories * @@ -35,7 +35,7 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerRecipeDisplays(RecipeHelper recipeHelper) { } - + /** * Registers bounds handlers * @@ -43,7 +43,7 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerBounds(DisplayHelper displayHelper) { } - + /** * Register other stuff * @@ -51,11 +51,11 @@ public interface REIPluginV0 extends REIPluginEntry { */ default void registerOthers(RecipeHelper recipeHelper) { } - + default void preRegister() { } - + default void postRegister() { } - + } |
