diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-08-04 22:11:07 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-08-04 22:11:07 +0800 |
| commit | 721ea24a226c2dca5cfef4b3f638d251547df0b8 (patch) | |
| tree | 76c9d8c2790db8730c95af2d250a4b062df1215a /src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java | |
| parent | 82225991887f55047d161a18e6fa19f798c0ba67 (diff) | |
| download | RoughlyEnoughItems-721ea24a226c2dca5cfef4b3f638d251547df0b8.tar.gz RoughlyEnoughItems-721ea24a226c2dca5cfef4b3f638d251547df0b8.tar.bz2 RoughlyEnoughItems-721ea24a226c2dca5cfef4b3f638d251547df0b8.zip | |
yes thank you
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 | 23 |
1 files changed, 17 insertions, 6 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 414f6ea3e..6211e0672 100644 --- a/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java +++ b/src/main/java/me/shedaniel/rei/api/plugins/REIPluginV0.java @@ -1,3 +1,8 @@ +/* + * Roughly Enough Items by Danielshe. + * Licensed under the MIT License. + */ + package me.shedaniel.rei.api.plugins; import me.shedaniel.rei.api.*; @@ -13,41 +18,47 @@ public interface REIPluginV0 extends REIPluginEntry { * * @param pluginDisabler the helper class to disable other plugins */ - default void onFirstLoad(PluginDisabler pluginDisabler) {} + default void onFirstLoad(PluginDisabler pluginDisabler) { + } /** * Registers items on the item panel * * @param itemRegistry the helper class */ - default void registerItems(ItemRegistry itemRegistry) {} + default void registerItems(ItemRegistry itemRegistry) { + } /** * Registers categories * * @param recipeHelper the helper class */ - default void registerPluginCategories(RecipeHelper recipeHelper) {} + default void registerPluginCategories(RecipeHelper recipeHelper) { + } /** * Registers displays for categories * * @param recipeHelper the helper class */ - default void registerRecipeDisplays(RecipeHelper recipeHelper) {} + default void registerRecipeDisplays(RecipeHelper recipeHelper) { + } /** * Registers bounds handlers * * @param displayHelper the helper class */ - default void registerBounds(DisplayHelper displayHelper) {} + default void registerBounds(DisplayHelper displayHelper) { + } /** * Register other stuff * * @param recipeHelper the helper class */ - default void registerOthers(RecipeHelper recipeHelper) {} + default void registerOthers(RecipeHelper recipeHelper) { + } } |
