Code style changes, entities fixes
This commit is contained in:
parent
9d604b2d25
commit
44962e18b6
377 changed files with 5038 additions and 4914 deletions
|
@ -2,29 +2,33 @@ package ru.betterend.api;
|
|||
|
||||
public interface BetterEndPlugin {
|
||||
/**
|
||||
* Alloying recipes registration.
|
||||
* See AlloyingRecipe.Builder for details.
|
||||
* Alloying recipes registration.
|
||||
* See AlloyingRecipe.Builder for details.
|
||||
*/
|
||||
default void registerAlloyingRecipes() {}
|
||||
|
||||
default void registerAlloyingRecipes() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Smithing recipes registration.
|
||||
* See AnvilSmithingRecipe.Builder for details.
|
||||
* Smithing recipes registration.
|
||||
* See AnvilSmithingRecipe.Builder for details.
|
||||
*/
|
||||
default void registerSmithingRecipes() {}
|
||||
|
||||
default void registerSmithingRecipes() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Additional biomes registration.
|
||||
* See BiomeRegistry.registerBiome for details.
|
||||
* Additional biomes registration.
|
||||
* See BiomeRegistry.registerBiome for details.
|
||||
*/
|
||||
default void registerEndBiomes() {}
|
||||
|
||||
default void registerEndBiomes() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Register other mod stuff, for example, EndHammers.
|
||||
* Register other mod stuff, for example, EndHammers.
|
||||
*/
|
||||
default void registerOthers() {}
|
||||
|
||||
|
||||
default void registerOthers() {
|
||||
}
|
||||
|
||||
|
||||
public static void register(BetterEndPlugin plugin) {
|
||||
plugin.registerAlloyingRecipes();
|
||||
plugin.registerSmithingRecipes();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue