ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/crafting/InitCrafting.java

28 lines
741 B
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("InitCrafting.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2015-03-07 12:51:28 +01:00
package ellpeck.actuallyadditions.crafting;
2015-01-30 20:16:32 +01:00
2015-07-01 21:32:48 +02:00
import ellpeck.actuallyadditions.util.ModUtil;
2015-01-30 20:16:32 +01:00
2015-10-02 16:48:01 +02:00
public class InitCrafting{
2015-01-30 20:16:32 +01:00
public static void init(){
2015-07-01 21:32:48 +02:00
ModUtil.LOGGER.info("Initializing Crafting Recipes...");
2015-01-30 20:16:32 +01:00
ItemCrafting.init();
BlockCrafting.init();
MiscCrafting.init();
FoodCrafting.init();
ToolCrafting.init();
2015-01-30 20:16:32 +01:00
}
}