aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java
diff options
context:
space:
mode:
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.java16
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() {
}
-
+
}