diff options
| author | shedaniel <daniel@shedaniel.me> | 2019-12-24 11:31:40 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2019-12-24 11:31:40 +0800 |
| commit | 08d80d588a36598114087a79917e36e9d2cc97c3 (patch) | |
| tree | 95cde698bbf1eca2f83143d39fd206cf2dc803f2 /src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java | |
| parent | 7d438f554c4173880a407a6bb8fc80b8a4723845 (diff) | |
| download | RoughlyEnoughItems-08d80d588a36598114087a79917e36e9d2cc97c3.tar.gz RoughlyEnoughItems-08d80d588a36598114087a79917e36e9d2cc97c3.tar.bz2 RoughlyEnoughItems-08d80d588a36598114087a79917e36e9d2cc97c3.zip | |
Finishing workstation usage and close #220
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java')
| -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 708bab589..858c57ca8 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() { } - + } |
