From 08d80d588a36598114087a79917e36e9d2cc97c3 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Tue, 24 Dec 2019 11:31:40 +0800 Subject: Finishing workstation usage and close #220 --- .../java/me/shedaniel/rei/api/plugins/REIPluginV0.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java') 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() { } - + } -- cgit