From 59321c5c7c650dab63328d13180a4468cbdb5103 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 31 Jul 2019 23:17:19 +0800 Subject: Better plugin loading --- .../java/me/shedaniel/rei/api/REIPluginEntry.java | 42 ---------------------- 1 file changed, 42 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/REIPluginEntry.java') diff --git a/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java b/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java index 2d0b2f236..8651c6751 100644 --- a/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java +++ b/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java @@ -12,48 +12,6 @@ import net.minecraft.util.Identifier; */ public interface REIPluginEntry { - /** - * On register of the plugin - * - * @param pluginDisabler the helper class to disable other plugins - */ - default void onFirstLoad(PluginDisabler pluginDisabler) {} - - /** - * Registers items on the item panel - * - * @param itemRegistry the helper class - */ - default void registerItems(ItemRegistry itemRegistry) {} - - /** - * Registers categories - * - * @param recipeHelper the helper class - */ - default void registerPluginCategories(RecipeHelper recipeHelper) {} - - /** - * Registers displays for categories - * - * @param recipeHelper the helper class - */ - default void registerRecipeDisplays(RecipeHelper recipeHelper) {} - - /** - * Registers bounds handlers - * - * @param displayHelper the helper class - */ - default void registerBounds(DisplayHelper displayHelper) {} - - /** - * Register other stuff - * - * @param recipeHelper the helper class - */ - default void registerOthers(RecipeHelper recipeHelper) {} - /** * Gets the priority of the plugin. * -- cgit