ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/jei/booklet/BookletRecipeHandler.java

40 lines
1.1 KiB
Java
Raw Normal View History

2016-01-16 20:06:25 +01:00
/*
2016-05-16 22:52:27 +02:00
* This file ("BookletRecipeHandler.java") is part of the Actually Additions mod for Minecraft.
2016-01-16 20:06:25 +01:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2016-01-16 20:06:25 +01:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2016-01-16 20:06:25 +01:00
*/
package de.ellpeck.actuallyadditions.mod.jei.booklet;
import de.ellpeck.actuallyadditions.api.booklet.IBookletPage;
2016-01-16 20:06:25 +01:00
import mezz.jei.api.recipe.IRecipeHandler;
import mezz.jei.api.recipe.IRecipeWrapper;
public class BookletRecipeHandler implements IRecipeHandler<IBookletPage>{
2016-01-16 20:06:25 +01:00
2016-01-16 20:06:25 +01:00
@Override
public Class getRecipeClass(){
return IBookletPage.class;
2016-01-16 20:06:25 +01:00
}
@Override
public String getRecipeCategoryUid(IBookletPage recipe){
return BookletRecipeCategory.NAME;
2016-01-16 20:06:25 +01:00
}
@Override
public IRecipeWrapper getRecipeWrapper(IBookletPage recipe){
2016-01-16 20:06:25 +01:00
return new BookletRecipeWrapper(recipe);
}
@Override
public boolean isRecipeValid(IBookletPage recipe){
2016-01-16 20:06:25 +01:00
return true;
}
}