Reorganized Imports/Packages
This commit is contained in:
parent
a8beba9196
commit
770a5b4046
854 changed files with 42775 additions and 41811 deletions
38
src/main/java/org/betterx/betterend/api/BetterEndPlugin.java
Normal file
38
src/main/java/org/betterx/betterend/api/BetterEndPlugin.java
Normal file
|
@ -0,0 +1,38 @@
|
|||
package org.betterx.betterend.api;
|
||||
|
||||
public interface BetterEndPlugin {
|
||||
/**
|
||||
* Alloying recipes registration.
|
||||
* See AlloyingRecipe.Builder for details.
|
||||
*/
|
||||
default void registerAlloyingRecipes() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Smithing recipes registration.
|
||||
* See AnvilSmithingRecipe.Builder for details.
|
||||
*/
|
||||
default void registerSmithingRecipes() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Additional biomes registration.
|
||||
* See BiomeRegistry.registerBiome for details.
|
||||
*/
|
||||
default void registerEndBiomes() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Register other mod stuff, for example, EndITEM_HAMMERS.
|
||||
*/
|
||||
default void registerOthers() {
|
||||
}
|
||||
|
||||
|
||||
static void register(BetterEndPlugin plugin) {
|
||||
plugin.registerAlloyingRecipes();
|
||||
plugin.registerSmithingRecipes();
|
||||
plugin.registerEndBiomes();
|
||||
plugin.registerOthers();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue